用Jquery实现复选框的全选
Posted Dione_xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Jquery实现复选框的全选相关的知识,希望对你有一定的参考价值。
<html>
<head>
<title>用Jquery实现复选框的全选</title>
<script src="../javascript/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(function () {
$(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);
});
});
})
</script>
</head>
<body>
<div>
<input id="checkAll" type="checkbox">全选
<input name="subBox" type="checkbox" />项1
<input name="subBox" type="checkbox" />项2
<input name="subBox" type="checkbox" />项3
<input name="subBox" type="checkbox" />项4
</div>
</body>
</html>
以上是关于用Jquery实现复选框的全选的主要内容,如果未能解决你的问题,请参考以下文章
如何使用jquery实现gridview中checkbox(复选框)的全选功能?