我有一个带有1复选框的表单。使用Jquery我想设置复选框的值为TRUE如果选中,如果它被选中,该值将被设置为FALSE。我怎么能这样做呢?谢谢
解决方法
UPDATED:使用prop而不是attr
<input type="checkBox" name="vehicle" id="vehicleChkBox" value="FALSE"/> $('#vehicleChkBox').change(function(){ cb = $(this); cb.val(cb.prop('checked')); });
超出日期:
这是jsfiddle
<input type="checkBox" name="vehicle" id="vehicleChkBox" value="FALSE" /> $('#vehicleChkBox').change(function(){ if($(this).attr('checked')){ $(this).val('TRUE'); }else{ $(this).val('FALSE'); } });