我正在使用像这样的字体:
<div class="checkbox checkbox-primary text-primary"><small>
<input id="town_id" type="checkbox" value="town_id" name="location[]">
<label for="town_id">Bucharest</label></small>
</div>
我有一个包含很多复选框的列表,它位于bootstrap模式中。
我正在使用此代码检查并更改复选框的状态:
if($("#"+id).is(':checked')){
$("#"+id).attr('checked',false);
} else {
$("#"+id).attr('checked', true);
}
在第一次点击$(“#”+ id).is(':checked')返回false,第二次返回true,第三次返回false,而不是我只是假