checkbox全选和反选

时间:2022-08-14 13:49:55
 $("#CheckBox").click(function () {
                if (this.checked) {
                    $("input[type='CheckBox']").each(function () { this.checked = true; });
                } else {
                    $("input[type='CheckBox']").each(function () { this.checked = false; });
                }
            })