checkbox全选和反选
$("#CheckBox").click(function () {
if (this.checked) {
$("input[type='CheckBox']").each(function () { this.checked = true; });
} else {
$("input[type='CheckBox']").each(function () { this.checked = false; });
}
})
if (this.checked) {
$("input[type='CheckBox']").each(function () { this.checked = true; });
} else {
$("input[type='CheckBox']").each(function () { this.checked = false; });
}
})

浙公网安备 33010602011771号