首页 > 代码库 > checkbox全选和反选

checkbox全选和反选

 $("#CheckBox").click(function () {
                if (this.checked) {
                    $("input[type=‘CheckBox‘]").each(function () { this.checked = true; });
                } else {
                    $("input[type=‘CheckBox‘]").each(function () { this.checked = false; });
                }
            })

checkbox全选和反选