jquery实现checkbox全选功能
Posted 月疯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery实现checkbox全选功能相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="js/jquery3.6.0.js"></script>
</head>
<body>
<table>
,<thead>
<tr>
<th><input type="checkbox"></th>
<th>姓名</th>
<th>年龄</th>
<th>爱好</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td>诸葛亮</td>
<td>80</td>
<td>喂猪</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>刘备</td>
<td>62</td>
<td>入洞房</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>吕布</td>
<td>38</td>
<td>杀人</td>
</tr>
</tbody>
</table>
<script>
$('thread input').change(function(){
var isChecked=$(this).prop("checked")
$('tbody input').prop("checked",isChecked);
})
$('tbody input').change(function(){
var allCount= $('tbody input').length;
var checkCount=$('tbody input:checked').length;
var isAllChecked=allCount===checkCount;
$('thead input').prop('check',isAllChecked);
})
</script>
</body>
</html>
以上是关于jquery实现checkbox全选功能的主要内容,如果未能解决你的问题,请参考以下文章
js 脚本怎样实现checkbox的全选,反选,类似邮箱中邮件的全选后删除移动