标签:box fun sel sele ctc select pre checked cli
$(".selectAll").on(‘click‘,function(){
if($(this).attr(‘data‘) == 1){
$(".selectCheckBox").prop(‘checked‘,true);
}else{
$(".selectCheckBox").prop("checked",false);
}
});
input checkbox操作,最好用prop,不要用attr
标签:box fun sel sele ctc select pre checked cli
原文地址:http://www.cnblogs.com/yk-ontheway/p/7605699.html