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
MySQL is a commonly used open source database sof...
1. Create tables <br /> First, create two t...
Have you ever had the need to compute a very larg...
Table of contents Vue custom directive Custom dir...
Build the project Execute the command line in the...
It is very common to highlight images on a page. ...
MySQL8.0.22 installation and configuration (super...
"Grand" are probably the two words that ...
Native js encapsulated seamless carousel plug-in,...
There are obvious differences between volume moun...
# The following examples are for x64-bit runtime ...
Demand background The team has the need for integ...
This article mainly records a tomcat process, and...
0 Differences between icons and images Icons are ...
This article will introduce an interesting pseudo...