- <html>
- <head>
- <script type="text/javascript">
- function s(){
- var c=document.getElementsByName('chb'); //得到checkbox数组
- var c2=document.getElementById('chb2');
- if(c2.checked){
- for(var i=0;i<c.length;i++){
- c[i].checked=true;
- }
- }else{
- for(var i=0;i<c.length;i++){
- c[i].checked=false;
- }
- }
- }
- </scripot>
- </head>
- <body>
- <input type="checkbox" name="chb"/>
- <input type="checkbox" name="chb"/>
- <input type="checkbox" name="chb"/>
- <input type="checkbox" name="chb"/>
- <input type="checkbox" name="chb"/>
- <input type="checkbox" id="chb2" onclick="s()"/>
- </body>
- </html>
CheckBox全选处理
最新推荐文章于 2024-04-04 19:20:16 发布