首页 > 代码库 > checkbox功能实现之全选、反选、取消
checkbox功能实现之全选、反选、取消
实例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<input type="button" value="http://www.mamicode.com/全选" />
<input type="button" value="http://www.mamicode.com/反选" />
<input type="button" value="http://www.mamicode.com/取消" />
<table border="1">
<thead></thead>
<tbody id="tb1">
<tr>
<td><input type="checkbox" /></td>
<td>11</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td>22</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td>33</td>
</tr>
</tbody>
</table>
<script src="http://www.mamicode.com/jquery-3.1.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
function CheckAll(){
// $(‘#tb1‘).find(‘:checkbox‘).attr(‘checked‘,‘checked‘);
$(‘#tb1‘).find(‘:checkbox‘).prop(‘checked‘,true);
// attr和prop区别,attr是针对所有的标签属性进行设置,prop是check和radio复选框的专门属性设置
}
function CheckReverse(){
//找,如果选中了,取消;未选中,则选中;
$(‘#tb1‘).find(‘:checkbox‘).each(function(){
//$(this) 每一个复选框
//$(this).prop(),如果选中了,则用true,否则用false
//attr如果选中;checked,checked=checked
if($(this).prop(‘checked‘)){
$(this).prop(‘checked‘,false);
}else{
$(this).prop(‘checked‘,true);
}
});
}
function CheckCancel(){
// $(‘#tb1‘).find(‘:checkbox‘).removeAttr(‘checked‘);
$(‘#tb1‘).find(‘:checkbox‘).prop(‘checked‘,false);
}
</script>
</body>
</html>
本文出自 “平平淡淡才是真” 博客,请务必保留此出处http://ucode.blog.51cto.com/10837891/1847218
checkbox功能实现之全选、反选、取消