您的位置:首页 > Web前端 > JQuery

用Jquery实现复选框的全选

2016-10-13 08:22 176 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: