Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
363 views
in Technique[技术] by (71.8m points)

javascript - 测试是否使用jQuery选中了复选框(Testing if a checkbox is checked with jQuery)

If the checkbox is checked, then I only need to get the value as 1;

(如果选中该复选框,那么我只需要将值设为1;)

otherwise, I need to get it as 0. How do I do this using jQuery?

(否则,我需要将其设为0.如何使用jQuery执行此操作?)

$("#ans").val() will always give me one right in this case:

($("#ans").val()在这种情况下总是给我一个权利:)

<input type="checkbox" id="ans" value="1" />
  ask by Rajeev translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use .is(':checked') to determine whether or not it's checked, and then set your value accordingly.

(使用.is(':checked')确定是否已选中,然后相应地设置您的值。)

More information here.

(更多信息在这里。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...