checkbox之checked的方法(attr和prop)区别

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

上一篇:封装一个TCP客户端类


下一篇:iOS 开发:利用第三方插件来安装CoCoapods