Copy code The code is as follows:<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Untitled Document</title> <script type="text/javascript" language="javascript"> function selectAllDels() { var allCheckBoxs = document.getElementsByName("preDelCheck"); var desc = document.getElementById("allChecked"); var selectOrUnselect=false; for(var i = 0; i < allCheckBoxs.length; i ++ ) { if(allCheckBoxs[i].checked){ selectOrUnselect=true; break; } } if (selectOrUnselect) { _allUnchecked(allCheckBoxes); }else { _allchecked(allCheckBoxes); } } function _allchecked(allCheckBoxes){ for(var i = 0; i < allCheckBoxs.length; i ++ ) { allCheckBoxs[i].checked = true; } } function _allUnchecked(allCheckBoxes){ for(var i = 0; i < allCheckBoxs.length; i ++ ) { allCheckBoxs[i].checked = false; } } </script> </head> <body> <p>test</p> <form> <input type="checkbox" name="preDelCheck" value="cream">ID1 <input type="checkbox" name="preDelCheck" value="sugar" >ID2 <input type="checkbox" name="preDelCheck" value="sugar">ID3 <input type="checkbox" name="preDelCheck" value="sugar">ID4 <input type="checkbox" name="preDelCheck" value="sugar">ID5 <input type="button" id="allChecked" value="Select all/Unselect all" onClick="selectAllDels()"> </form> </body> </html> |
<<: How to install and deploy zabbix 5.0 for nginx
>>: Detailed explanation of single-row function code of date type in MySQL
From handicraft design to graphic design to web de...
I remember when I was interviewing for my current...
In the course of work, you will encounter many ca...
Background requirements: The ERP system needs to ...
Table of contents Overview 1. Overview of input a...
Preface There are 4 types of operators in MySQL, ...
Possible reasons: The main reason why Seata does ...
Use HSSFWorkbook in Apache.POI to export to Excel...
There is a table student in the mysql database, i...
MySQL 5.7 version: Method 1: Use the SET PASSWORD...
1 Question The company's server uses Apache, ...
Sometimes, we need to use the hyperlink <a> ...
1. Introduction to VMware vSphere VMware vSphere ...
Download the compressed version of MySQL-5.7.11-w...
Introduction to Jib Jib is a library developed by...