• 一个全选按钮js的案例


    <html>
    <head>
    <script type="text/javascript">   
     
        // 全选按钮选中标志  
        var checkflag = "false";  
        // 全选功能  
        function selectAll(name){  
            var field = document.getElementsByName(name);  
            // 如果全选按钮状态是未选中  
            if (checkflag == "false"){  
                for (i = 0; i < field.length; i++){  
                    field[i].checked = true;  
                }  
                // 更改全选按钮选中标志  
                checkflag = "true";  
            }else{  
                for (i = 0; i < field.length; i++){  
                    field[i].checked = false;   
                }  
                // 更改全选按钮选中标志  
                checkflag = "false";  
            }  
        }  
     
    </script> 
    </head>
    <body>
    <form name="form" method="post" action=""> 
        <table> 
            <tr> 
                <td> 
                    <input type="checkbox" value="全选" onClick="selectAll('list')">选中所有显示记录   
                </td> 
            </tr> 
            <tr> 
                <td> 
                    <input type="checkbox" name="list" value="1" > 
                </td>       
            </tr> 
            <tr> 
                <td> 
                    <input type="checkbox" name="list" value="2"> 
                </td>       
            </tr> 
            <tr> 
                <td> 
                   <input type="checkbox" name="list" value="3"> 
                </td>       
            </tr> 
        </table> 

    </form> 
    </body>
    </html>

  • 相关阅读:
    idea自定义servlet模板
    jsp基础-指令,内置对象,动作,EL表达式,JSTL技术
    cookie和session
    HttpServletRequest
    IO字符流
    IO字节流
    递归
    File 类
    JDBC数据库连接
    Map接口
  • 原文地址:https://www.cnblogs.com/quanfu2326/p/4302748.html
Copyright © 2020-2023  润新知