Jquery efficient invert selection implementation

Source: Internet
Author: User

Copy codeThe Code is as follows: // invert 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 in each row of the table and click it with a button to implement reverse selection.
This line is mainly used:Copy codeThe Code is as follows: var statu = input. prop ("checked") = true? False: true;

If this parameter is selected, the value is false. Otherwise, the value is true.
The code can also be simplified.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.