这是一个简单的全选js特效,可以通过checkbox或者按钮来实现多选和全选效果,根据自己的需求来自定义即可。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>通过checkbox或按钮实现全选效果_武鸣人</title> <script type="text/javascript"> <!-- //说明:Javascript控制CheckBox的全选与取消全选 function checkAll(name) {//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) var el = document.getElementsByTagName('input'); //取document中所有的input,比如文本输入框、按钮等元件,全都取出来存入数组,可以用el.length取数量,el[i]取内容 var len = el.length; for(var i=0; i<len; i++) { if((el[i].type=="checkbox") && (el[i].name==name)) { el[i].checked = true; } } }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) function clearAll(name) { var el = document.getElementsByTagName('input'); var len = el.length; for(var i=0; i<len; i++) { if((el[i].type=="checkbox") && (el[i].name==name)) { el[i].checked = false; } } }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) //--> </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <form> <input type="checkbox" name="test" value="" onclick="if(this.checked==true) { checkAll('test'); } else { clearAll('test'); }">字母全选开关 <input type="checkbox" name="test" value="a">a <input type="checkbox" name="test" value="b">b <input type="checkbox" name="test" value="c">c <input type="checkbox" name="test" value="d">d <input type="checkbox" name="test" value="e">e <input type="checkbox" name="test" value="f">f <input type="checkbox" name="test" value="g">g <br> <input type="checkbox" name="num" value="" onclick="if(this.checked==true) { checkAll('num'); } else { clearAll('num'); }">数字全选开关 <input type="checkbox" name="num" value="1">1 <input type="checkbox" name="num" value="2">2 <input type="checkbox" name="num" value="3">3 <br> <input type="button" value="选择所有的字母" onclick="checkAll('test')"> <input type="button" value="清空选中的字母" onclick="clearAll('test')"> <br> <input type="button" value="选择所有的数字" onclick="checkAll('num')"> <input type="button" value="清空选中的数字" onclick="clearAll('num')"> </form> </body> </html>
本文来自武鸣人网站,转载请注明出处