Jquery,checkbox是否被选中

if($('#ab_IsInsurance_ckb').is(":checked")){

      alert('被选中');

}else{

    alert('未选中');

}

//改变自身选中属性

<input type="checkbox" onchange='myChk(this)' id='abc' name ='abc'/>

//checkbox选择
function myChk(my){
 if($(my).attr("checked")){$(my).removeAttr("checked");}
 else{$(my).attr("checked",'true');}
}


 

你可能感兴趣的:(Jquery,checkbox是否被选中)