jquery复选框全选功能
Posted webmc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery复选框全选功能相关的知识,希望对你有一定的参考价值。
$(function () { $(‘input[name="Checkbox1"]‘).click(function () { if ($(this).is(‘:checked‘)) { $(‘input[name="chk"]‘).each(function () { //此处如果用attr,会出现第三次失效的情况 $(this).prop("checked", true); }); } else { $(‘input[name="chk"]‘).each(function () { $(this).removeAttr("checked", false); }); } }); })
以上是关于jquery复选框全选功能的主要内容,如果未能解决你的问题,请参考以下文章