码迷,mamicode.com
首页 > 其他好文 > 详细

JQ全选反选

时间:2017-11-09 19:47:43      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:cursor   oct   order   微软   console   htm   微软雅黑   jquery   har   

<!DOCTYPE html>
<html>

<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
* {
padding: 0;
margin: 0;
}

.wrap {
width: 300px;
margin: 100px auto 0;
}

table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #c0c0c0;
}

th,
td {
border: 1px solid #d0d0d0;
color: #404060;
padding: 10px;
}

th {
background-color: #09c;
font: bold 16px "微软雅黑";
color: #fff;
}

td {
font: 14px "微软雅黑";
}

tbody tr {
background-color: #f0f0f0;
}

tbody tr:hover {
cursor: pointer;
background-color: #fafafa;
}
</style>
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(function () {

$(‘#j_cbAll‘).click(function () {
console.log($(this).prop(‘checked‘));
var isChecked = $(this).prop(‘checked‘);

$(‘#j_tb‘).find(‘input‘).prop(‘checked‘, isChecked);
})

$(‘#j_tb input‘).click(function () {
console.log($(‘#j_tb input‘).length);
var totalCheckNum = $(‘#j_tb input‘).length;


console.log($(‘#j_tb input:checked‘).length);
var checkedCheckNum = $(‘#j_tb input:checked‘).length;


var result = totalCheckNum == checkedCheckNum ? true : false;
$(‘#j_cbAll‘).prop(‘checked‘, result);
})
})
</script>
</head>

<body>
<div class="wrap">
<table>
<thead>
<tr>
<th>
<input type="checkbox" id="j_cbAll" />
</th>
<th>武功名称</th>
<th>所属大侠</th>
</tr>
</thead>
<tbody id="j_tb">
<tr>
<td>
<input type="checkbox" />
</td>
<td>碧海潮生曲</td>
<td>东邪</td>
</tr>
<tr>
<td>
<input type="checkbox" />
</td>
<td>蛤蟆功</td>
<td>西毒</td>
</tr>
<tr>
<td>
<input type="checkbox" />
</td>
<td>一阳指</td>
<td>南帝</td>
</tr>
<tr>
<td>
<input type="checkbox" />
</td>
<td>降龙十八掌</td>
<td>北丐</td>
</tr>
</tbody>
</table>
</div>
</body>

</html>

JQ全选反选

标签:cursor   oct   order   微软   console   htm   微软雅黑   jquery   har   

原文地址:http://www.cnblogs.com/kellyhoang/p/7810807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!