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