这是html代码
<body>
<div>
<input id="checkAll" type="checkbox" />全选
<input name="subBox" type="checkbox" value="1"/>项1
<input name="subBox" type="checkbox" value="2"/>项2
<input name="subBox" type="checkbox" value="3"/>项3
<input name="subBox" type="checkbox" value="4"/>项4
</div>
<div>
<input type="button" value="提交">
</div>
</body>
下面是js代码
$(function() {
$("#checkAll").click(function() {
$('input[name="subBox"]').attr("checked", this.checked);
});
var $subBox = $("input[name='subBox']");
$subBox.click(function() {
$("#checkAll").attr("checked", $subBox.length == $("input[name='subBox']:checked").length ? true : false);
});
// alert($subBox);
});
请做补充?
你好!!
$(function(){希望对你有帮助!!