如果复选框被选中,那么我只需要得到值为1;否则,我需要得到它为0。我如何使用jQuery做到这一点?

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

<input type="checkbox" id="ans" value="1" />

当前回答

只需使用$(selector).is(':checked')

它返回一个布尔值。

其他回答

$("#ans").attr('checked') 

会告诉你是否检查过。您还可以使用第二个参数true/false来选中/取消选中复选框。

$("#ans").attr('checked', true);

对于每个注释,在可用时使用prop而不是attr。例句:

$("#ans").prop('checked')
<input type="checkbox" id="ans" value="1" />

Jquery: Var test= $("#ans").is(':checked') 它返回true或false。

在你的职责范围内:

$test =($request->get ( 'test' )== "true")? '1' : '0';

Use:

$("#ans option:selected").val()
 $("#id").prop('checked') === true ? 1 : 0;
// use ternary operators
$("#ans").is(':checked') ? 1 : 0;