js实现复选框全选和不选
Posted 大C文
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js实现复选框全选和不选相关的知识,希望对你有一定的参考价值。
<html> <head> <title></title> </head> <style> </style> <script> window.onload =function(){ var oDiv=document.getElementById(‘div1‘) //获取到那个div var oInput=oDiv.getElementsByTagName(‘input‘) //获取到div下面的所有input document.getElementById(‘chooseAll‘).onclick=function(){ for(var i=0;i<oInput.length;i++){ oInput[i].checked=true } } document.getElementById(‘noChoose‘).onclick=function(){ for(var i=0;i<oInput.length;i++){ oInput[i].checked=false } } } </script> <body> <input id="chooseAll" type="button" value="全选" /> <input id="noChoose" type="button" value="不选"/> <div id="div1"> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> <input type="checkBox" /> </div> </body> </html>
以上是关于js实现复选框全选和不选的主要内容,如果未能解决你的问题,请参考以下文章