标签:
$("#checkedAll").click(function() {
$("input[type=‘checkbox‘][name=‘checkItem‘]").prop("checked",this.checked);
});
var $subBox = $("input[type=‘checkbox‘][name=‘checkItem‘]");
$subBox.click(function() {
$("#checkedAll").prop("checked",$subBox.length == $("input[type=‘checkbox‘][name=‘checkItem‘]:checked").length ? "checked" : "");
});
标签:
原文地址:http://www.cnblogs.com/caroline4lc/p/4299717.html