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