// Reverse selection
$("#reverse-select") .click(function() {
$('.table tr').each(function() {
var input = $(this).find('input');
var statu=input .prop("checked")==true?false:true;
input.prop("checked",statu);
});
});
I put a checkbox on each row of the table and click the button to reverse the selection
Mainly this line:
var statu=input.prop("checked")==true?false:true;
If checked, it is false Otherwise, it is true
The code can be simplified.
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn