标签:
$('#checkbox').prop('checked')
$('#checkbox').attr('checked',true) $('#checkbox').attr('checked',false)
<div class="checkbox"> <label><input type="checkbox" class="pull-right"></label> </div>
body.on('click', '.checkbtn', function(){ console.log('input!'); var check = $(this); if(check.prop("checked")){ //选中 } else { //未选中 } });
版权声明:本文为博主原创文章,欢迎转载,转载请注明出处。
jQuery中checkbo添加事件,判断是否选中和设置选中与取消选中
标签:
原文地址:http://blog.csdn.net/xxm524/article/details/47359123