abstract:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,&
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>JS全选-总结</title> <style> .box{width: 120px;height: 250px;border:1px solid #000;border-radius:5px;padding:0px 10px;margin:20px auto;} .box div{border-bottom:1px solid #ccc;padding-bottom:10px;margin-bottom:8px;} .box input{margin:8px;} </style> <script type="text/javascript"> //全选 checkall //选项 checkbox function checkall(){ //以下是声明两个变量 var item,checkall; //以下是获取全选的DOM元素ID名称 checkall = document.getElementById('checkall'); //以下是获取通过NAME获得选项元素 item = document.getElementsByName('item[]'); //下面在然后做一个for循环,var i = 0 初始化,i小于item选项的长度,i++点击的次数不可大于item选项 for (var i=0;i<item.length;i++) { //checked 是选中的意思,判断当item为真就checked if (checkall.checked) { item[i].checked = true; //else 如果以上判断不符合条件执行执行else中的语句 }else{ //如果checked为假就不checked item[i].checked = false; } } } </script> </head> <body> <div> <div> <input type="checkbox" id="checkall" onclick="checkall()"><label for="checkall">全选</label> </div> <input type="checkbox" name="item[]">选项1<br> <input type="checkbox" name="item[]">选项2<br> <input type="checkbox" name="item[]">选项3<br> <input type="checkbox" name="item[]">选项4<br> <input type="checkbox" name="item[]">选项5<br> <input type="checkbox" name="item[]">选项6<br> </div> </body> </html>
Correcting teacher:灭绝师太Correction time:2018-11-26 09:23:59
Teacher's summary:嗯,这样写对学习有好处,思路清晰!继续保持!