JS Implementation checkbox Select All/Cancel

Source: Internet
Author: User

All operations will be done using jquery .

The main purpose is to implement the bulk / Individual delete operation for the specified content.

Look at the design of the page first.

The main areas of implementation are:

First, click the checkbox next to "title" to implement the selection of all entries.

Important:jquery selector

The PHP code is as follows:

Name the checkbox "checkall" and "checklist". Then, when you click on "checkall"

All "Checklist" will be selected through the selector, andthen "deleted".

Full Select / Cancel function:

1$ ("#checkAll"). Click (function(){2 if( This. Checked) {3$ ("Input[name= ' Checklist ')". each (function(){4  This. checked=true;5 });6}Else{7$ ("Input[name= ' Checklist ')". each (function(){8  This. checked=false;9 });Ten } One } A);

  Implementation gets the selected checkbox content (click "Delete")

1 $ ("#delSelected"). Click (function() {2 vararrcheck=$ ("input[name= ' checklist ') ]:checked "); 3 vararrt=[]; 4 $ (arrcheck). Each (function() {5 arrt.push (this. id); 6 }); 7 });

The rest is to send the acquired information through Ajax using post to the specified action to deal with.

JS Implementation checkbox Select All/Cancel

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.