标签:
1、
$(‘#checkbox‘).click(function(){
if($(‘#checkbox‘).is(‘:checked‘)) {
$(".sendmailhui").hide();
$(".sendmail").show();
}else{
$(".sendmailhui").show();
$(".sendmail").hide();
}
})
2、
$("#chk").bind("click",function(){
var check1 = $("#chk").prop("checked");
if(check1){
$(".chk").prop("checked",true);
}else{
$(".chk").prop("checked",false);
}
})
checkbox之checked的方法(attr和prop)区别
标签:
原文地址:http://www.cnblogs.com/smght/p/4955614.html