js实现checkbox全选 代码具体意思是啥?看不太懂
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js实现checkbox全选 代码具体意思是啥?看不太懂相关的知识,希望对你有一定的参考价值。
<script language=javascript>
function unselectall()
if(document.myform.chkAll.checked)
document.myform.chkAll.checked = document.myform.chkAll.checked&0;
function CheckAll(form)
for (var i=0;i<form.elements.length;i++)
var e = form.elements[i];
if (e.Name != 'chkAll'&&e.disabled==false)
e.checked = form.chkAll.checked;
</script>
在网页中html中的代码:
<form name="myform" method="post" id="myform" action="" >
<input name='id' type='checkbox' onclick='unselectall()' id='id' value='1'> 设计家园
<input name='id' type='checkbox' onclick='unselectall()' id='id' value='2'> 网页教程
<input name='id' type='checkbox' onclick='unselectall()' id='id' value='3'> 酷站欣赏
<input name='id' type='checkbox' onclick='unselectall()' id='id' value='4'> 网页素材
<input name='chkAll' type='checkbox' id='chkAll' onclick='CheckAll(this.form)' value='checkbox'>
全选
</form>
function CheckAll(form)具体都是什么意思? form是什么?
form是随便起的一个变量名字,用来接收参数。
其实我估计我说这些你也还是不明白。
要想让你明白,我估计用文字是很难了,因为要跟你说很多东西才行。。 参考技术A checkAll()是你全选的那个复选框触发的全选事件,form是这个函数的参数,接收的是this.form这个实际参数,函数内部用的元素都是myform里面的元素 参考技术B function CheckAll(form) 是自己写的一个对checkbox全部选中操作的一个函数啊。。。
form是随便起的一个变量名字,用来接收参数。
js实现全选,反选,全不选
思路:1、获取元素。2、用for循环历遍数组,把checkbox的checked设置为true即实现全选,把checkbox的checked设置为false即实现不选。3、通过if判断,如果checked为true选中状态的,就把checked设为false不选状态,如果checked为false不选状态的,就把checked设为true选中状态。
js代码
<script> window.onload=function(){ var CheckAll=document.getElementById(\'All\'); var UnCheck=document.getElementById(\'uncheck\'); var OtherCheck=document.getElementById(\'othercheck\'); var div=document.getElementById(\'div\'); var CheckBox=div.getElementsByTagName(\'input\'); CheckAll.onclick=function(){ for(i=0;i<CheckBox.length;i++){ CheckBox[i].checked=true; }; }; UnCheck.onclick=function(){ for(i=0;i<CheckBox.length;i++){ CheckBox[i].checked=false; }; }; othercheck.onclick=function(){ for(i=0;i<CheckBox.length;i++){ if(CheckBox[i].checked==true){ CheckBox[i].checked=false; } else{ CheckBox[i].checked=true } }; }; }; </script>
html代码
全选:<input type="button" id="All" value="全选" /><br /> 不选<input type="button" id="uncheck" value="不选" /><br /> 反选<input type="button" id="othercheck" value="反选" /><br /> <div id="div"> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> <input type="checkbox" /><br /> </div>
运行效果
这个button真是太丑了,个人喜欢用<input type="radio">
以上是关于js实现checkbox全选 代码具体意思是啥?看不太懂的主要内容,如果未能解决你的问题,请参考以下文章
js--checked的全选,反选 ,点击子的checkbox改变父的checkbox状态