利用jQuery实现全选全不选反选(checkBox)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用jQuery实现全选全不选反选(checkBox)相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html><html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jquery-1.8.3.js"></script>
</head>
<body>
<input type="checkBox" class="all">全选/全不选
<br>
<input type="checkBox" class="un">反选
<hr>
<div id="main">
<input type="checkBox">篮球
<br>
<input type="checkBox">羽毛球
<br>
<input type="checkBox">乒乓球
<br>
<input type="checkBox">足球
<br>
<input type="checkBox">橄榄球
<br>
<input type="checkBox">棒球
</div>
</body>
<script type="text/javascript">
// 全选和全不选举
$(‘.all‘).click(function(){
$(‘#main input‘).attr(‘checked‘,this.checked);
});
// 反选
$(‘.un‘).click(function(){
$(‘#main input‘).each(function(){
this.checked=!this.checked; // 进行反选
});
});
</script>
</html>
以上是关于利用jQuery实现全选全不选反选(checkBox)的主要内容,如果未能解决你的问题,请参考以下文章