input checkbox操作,最好用prop,不要用attr

方法一:
1 if ($("#checkbox-id").get(0).checked) {
2 // do something
3 }




方法二:
if($('#checkbox-id').is(':checked')) {
// do something
}

方法三:
if ($('#checkbox-id').attr('checked')) {
// do something
}


在jQuery1.6版本之后,取复选框有没有被选中,要用prop
if($('#checkbox-id').prop('checked'))
{
  //do something
}
function checkInfo(){
$("input[name='org3.otherValues']").each(
function(){
if($(this).get(0).checked){
return true;
}
});
var org3_ids=$("#org3_ids").val();
if(org3_ids!=''){
return true;
}

alertMsg.warn("请选择接收人!");
return false;
}
原文地址:https://www.cnblogs.com/yk-ontheway/p/7605699.html