html中全选
jquery 代码
$(document).ready(function () { $("input[name=checkAll]").click(function () { if (this.checked) $("input[name=checkItem]").prop("checked", true); else $("input[name=checkItem]").prop("checked", false); }); $("#ckAll").click(); }) function checkOne(ths) { if (ths.checked == false) $("input[name=checkAll]").prop("checked", false); else { var count = $("input[name=checkItem]:checkbox:checked").length; if (count == $("input[name=checkItem]:checkbox").length) { $("input[name=checkAll]").prop("checked", true); } } }