<!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>
原文地址:http://blog.51cto.com/11871779/2069578
时间: 2024-10-14 10:35:27