Home > Web Front-end > JS Tutorial > Specific implementation of jquery efficient reverse selection_jquery

Specific implementation of jquery efficient reverse selection_jquery

WBOY
Release: 2016-05-16 17:34:39
Original
978 people have browsed it
Copy code The code is as follows:

// 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:
Copy code The code is as follows:

var statu=input.prop("checked")==true?false:true;

If checked, it is false Otherwise, it is true
The code can be simplified.
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template