jquery 复选框全选与取消选中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 复选框全选与取消选中相关的知识,希望对你有一定的参考价值。
$("th").on(‘click‘,‘#checkboxHead‘,function(){
var temp= $("#checkboxHead").is(‘:checked‘);
// alert(temp);
if(temp==true){
//alert("选中");
$("td input[type=‘checkbox‘]").each(function(){
// 复选框打勾
$(this).prop("checked",true);
});
}
else
{ // 复选框取消打勾
$("td input[type=‘checkbox‘]").each(function(){
$(this).removeAttr("checked");
// $(this).attr("checked",false);
});
}
});
以上是关于jquery 复选框全选与取消选中的主要内容,如果未能解决你的问题,请参考以下文章