jQuery实现复选框全选全不选
Posted 新梦起航
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现复选框全选全不选相关的知识,希望对你有一定的参考价值。
<input type="checkbox" name="selectall"/> 全选<input name="partnerId" type="checkbox">aaaaaa
<input name="partnerId" type="checkbox">bbbbbb
$('input[name="selectall"]').click(function()
if($(this).is(':checked'))
$('input[name="partnerId"]').each(function()
//此处如果用attr,会出现第三次失效的情况
$(this).prop("checked",true);
);
else
$('input[name="partnerId"]').each(function()
$(this).removeAttr("checked",false);
);
);
以上是关于jQuery实现复选框全选全不选的主要内容,如果未能解决你的问题,请参考以下文章
jQuery js实现checkbox复选框全选全不选反选 PHP