首页 > Web开发 > 详细

js小效果-全选

时间:2016-11-19 23:43:00      阅读:264      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script>
window.onload=function(){
var aBtn=document.getElementsByTagName(‘input‘);
var count=0;
aBtn[0].onclick=function(){
if(this.checked==true){
for(var i=1;i<aBtn.length;i++){
aBtn[i].checked=true;
}
count=aBtn.length-1;
document.title=count;
}else{
for(var i=1;i<aBtn.length;i++){
aBtn[i].checked=false;
}
count=0;
document.title=count;
}

};
for( var i=1;i<aBtn.length;i++){
aBtn[i].onclick=function(){
if(this.checked==true){
count++;
}else{
count--;
}
if(count==aBtn.length-1){
aBtn[0].checked=true;
}else{
aBtn[0].checked=false;
}
document.title=count;
}
};
}
</script>
</head>
<body>
<input type="checkbox" />
<hr/>
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
</body>
</html>

js小效果-全选

原文:http://www.cnblogs.com/HUANGRONG888/p/6081584.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!