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');}
}