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
1. In the previous chapter, we learned that we ca...
In most cases, MySQL does not support Chinese whe...
Here, clever use of CSS techniques allows you to g...
Next, we will learn how to monitor server perform...
I recently bought the cheapest Tencent cloud serv...
Table of contents What is recursion and how does ...
Pseudo-elements and pseudo-classes Speaking of th...
This article shares the specific code of js to ac...
Step 1: Get the MySQL YUM source Go to the MySQL ...
Development Trends: html (Hypertext Markup Languag...
Since the project requires a questionnaire, but th...
Table of contents 1. Closure 2. Closure usage sce...
Table of contents Hidden, descending, and functio...
It has always been very difficult to achieve wave...
RGBA is a CSS color that can set color value and ...