This article shares the specific code of JavaScript to achieve the function of selecting all or inverting selection for your reference. The specific content is as follows The code is as follows <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Case--Select All Tables</title> <style> table { border: 1px solid; margin: auto; width: 500px; } td, th { text-align: center; border: 1px solid; } .out { background-color: white; } .over { background-color: pink; } div{ margin-top: 10px; text-align: center; } </style> <script> window.onload = function () { //Select all document.getElementById("checkAll").onclick = function () { var cbs = document.getElementsByName("cb"); for (var i = 0; i < cbs.length; i++) { cbs[i].checked = true; } } //Uncheck all document.getElementById("unCheckAll").onclick = function () { var cbs = document.getElementsByName("cb"); for (var i = 0; i < cbs.length; i++) { cbs[i].checked = false; } } //Recheck document.getElementById("reCheck").onclick = function () { var cbs = document.getElementsByName("cb"); for (var i = 0; i < cbs.length; i++) { cbs[i].checked = !cbs[i].checked; } } //When the mouse passes over, the color changes var trs = document.getElementsByTagName("tr"); for (var i = 0; i < trs.length; i++) { trs[i].onmouseover = function () { this.className = "over"; } trs[i].onmouseout = function () { this.className = "out"; } } //Select the top checkbox and select all document.getElementById("firstCb").onclick = function () { var cbs = document.getElementsByName("cb"); for (var i = 0; i < cbs.length; i++) { cbs[i].checked = this.checked; } } } </script> </head> <body> <table> <caption>Student Information Form</caption> <tr> <td><input type="checkbox" name="cb" id="firstCb"></td> <td>Number</td> <td>Name</td> <td>Gender</td> <td>Operation</td> </tr> <tr> <td><input type="checkbox" name="cb"></td> <td>1</td> <td>Linghu Chong</td> <td>Male</td> <td><a href="javascript:void(0);" onclick="delTr(this)">Delete</a></td> </tr> <tr> <td><input type="checkbox" name="cb"></td> <td>2</td> <td>Let me go</td> <td>Male</td> <td><a href="javascript:void(0);" onclick="delTr(this)">Delete</a></td> </tr> <tr> <td><input type="checkbox" name="cb"></td> <td>3</td> <td>Yue Buqun</td> <td>?</td> <td><a href="javascript:void(0);" onclick="delTr(this)">Delete</a></td> </tr> </table> <div> <input type="button" value="Select All" id="checkAll"> <input type="button" value="Uncheck All" id="unCheckAll"> <input type="button" value="Recheck" id="reCheck"> </div> </body> </html> Operation Results The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL practical skills: analysis of methods to compare whether two tables have different data
>>: Remote development with VSCode and SSH
In the previous article, we introduced three comm...
Preface Index Condition Pushdown (ICP) is a new f...
Preface I am a PHP programmer who started out as ...
Setting the font for the entire site has always b...
Table of contents Overview Problem Description Ci...
Preface The CentOS environment variable configura...
Because I need to install MySQL, I record the ins...
Table of contents Overview Type Assertions in syn...
Table of contents 1. Pull the image 2. Create a l...
Solution to Ubuntu dual system stuck when startin...
MySQL password is correct but cannot log in local...
Chapter 1 <br />The most important principl...
MongoDB is cross-platform and can be installed on...
When the database concurrently adds, deletes, and...
VMware Preparation CentOS preparation, here is Ce...