全选+反选
可根据控制台结合查看结果
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>过滤选择器</title>
<script src="jquery-3.2.1.min.js"></script>
</head>
<body>
<table border="1">
<tr>
<td><input type="checkbox" value="1"></td>
<td>剑圣</td>
<td>450</td>
</tr>
<tr>
<td><input type="checkbox" value="2"></td>
<td>剑豪</td>
<td>6300</td>
</tr>
<tr>
<td><input type="checkbox" value="3"></td>
<td>剑姬</td>
<td>6300</td>
</tr>
<tr>
<td><input type="checkbox" value="4"></td>
<td>剑魔</td>
<td>6300</td>
</tr>
</table>
<input type="button" value="点击选择使用第一个" id="firstBtn">
<input type="button" value="点击选择使用最后一个" id="lastBtn">
<input type="button" value="全选适用于批量删除" id="allBtn">
<input type="button" value="查看已选中的" id="checkBtn">
<input type="button" value="查看未选中的" id="nocheckBtn">
<input type="button" value="反选" id="overBtn">
<input type="button" value="反选的升级版" id="overBtn1">
<script>
$(function() {
$("table tr:even").css('background-color','pink');
$("table tr:odd").css('background-color','blue');
$("#firstBtn").click(function() {
var first = $("table tr:first").html();
console.log(first);
})
$("#lastBtn").click(function() {
var last = $("table tr:last").text();
console.log(last);
})
$("#allBtn").click(function() {
$.each($("table tr td>input"), function(index, value) {
console.log($(this).val());
$(this).prop('checked',true);
})
})
$("#checkBtn").click(function() {
$("table tr td>input:checked")
$.each($("table tr td>input:checked"), function(index, value) {
console.log($(this).val());
})
})
$("#nocheckBtn").click(function() {
console.log($("table tr td>input:not(:checked)"))
})
$("#overBtn").click(function() {
$.each($("table tr td>input"), function(index, value) {
var istrue =$(this).prop("checked");
if(istrue){
$(this).prop("checked",false);
} else{
$(this).prop("checked",true);
}
})
})
$("#overBtn1").click(function() {
$.each($("table tr td>input"), function(index, value){
$(this).prop("checked",!$(this).prop("checked"))
})
})
})
</script>
</body>
</html>
|