js html css实现复选框全选与反选
2019/6/27 21:43:52
本文主要是介绍js html css实现复选框全选与反选,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文实例为大家分享了js复选框全选与反选实现代码,供大家参考,具体内容如下
<html> <head> <title>html+css+js实现复选框全选与反选</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta name="keywords" content="js,笔试题目" /> <style type="text/css"> table,tr,td { border:1px solid red; } </style> <script type="text/javascript"> function quanxuan() { for(var i=1;i<=3;i++) { var cbox_id="cb"+i; var cbox=document.getElementById(cbox_id); //alert(cbox.value); if(document.getElementById("cb_quanxuan").checked) cbox.checked=true; else cbox.checked=false;; } } function fanxuan() { for(var i=1;i<=3;i++) { var cbox_id="cb"+i; var cbox=document.getElementById(cbox_id); if(document.getElementById("cb_fanxuan").checked) {//选中反选框 if(cbox.checked) cbox.checked=false; else cbox.checked=true; } else { if(cbox.checked) cbox.checked=false; else cbox.checked=true; } } } </script> </head> <body> <form id="form1"> <table> <tr> <td><input type="checkbox" id="cb_quanxuan" onclick="quanxuan()" />全选</td> <td>复选框全选案例</td> <td> </td> <td> </td> </tr> <tr> <td><input type="checkbox" id="cb1" value="1" />1</td> <td>我是傻逼1</td> <td> </td> <td> </td> </tr> <tr> <td><input type="checkbox" id="cb2" value="2" />2</td> <td>我是傻逼2</td> <td> </td> <td> </td> </tr> <tr> <td><input type="checkbox" id="cb3" value="3" />3</td> <td>我是傻逼3</td> <td> </td> <td> </td> </tr> <tr> <td><input type="checkbox" id="cb_fanxuan" onclick="fanxuan()" />反选</td> <td>反选案例</td> <td> </td> <td> </td> </tr> </table> </form> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于js html css实现复选框全选与反选的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习