zoukankan      html  css  js  c++  java
  • checkbox的全选,取消全选,获得选中值

    <html>
    <head>
    <title>jq全选以及获得选中项的值</title>
    <meta charset="utf-8">
    
    <script src="http://libs.baidu.com/jquery/1.4.1/jquery.js"></script>
    <script>
    $(function() {
        $("#select").click(function() {
            if ($(this).attr("checked")) {
                $("input[name=items]").each(function() {
                    $(this).attr("checked", true);
                });
            } else {
                $("input[name=items]").each(function() {
                    $(this).attr("checked", false);
                });
            }
        });
        //得到选中的值,ajax操作使用
        $("#submit").click(function() {
            var text="";
            $("input[name=items]").each(function() {
                if ($(this).attr("checked")) {
                    text += ","+$(this).val();
                }
            });
             alert(text);
        });
    });
    </script>
    </head>
    <body>
    <form action="#" method="post">
        <input type="checkbox" value="1" name="items"><br/>
        <input type="checkbox" value="2" name="items"><br/>
        <input type="checkbox" value="3" name="items"> <br/>
        <input type="checkbox" value="4" name="items"> <br/>
        <input type="checkbox" value="5" name="items"> <br/>
        <input type="checkbox" value="6" name="items"> <br/>
        <input type="checkbox" value="7" name="items"> <br/>
        <input type="checkbox" value="8" name="items"> <br/>
        <input type="checkbox" value="9" name="items"> <br/>
        <input type="checkbox" value="10" name="items"> <br/>
        <input type="checkbox" value="11" name="items"> <br/>
    	<input type="checkbox" id="select"/> 全选<br/>
        <input type="submit" id="submit" value="提交">
    </form>
    </body>
    </html>
    

      好像高版本的jq库会有问题,待研究。。。。。

  • 相关阅读:
    回顾2016,工作总结!
    上传base64格式的图片到服务器
    input输入提示历史记录
    input输入时软键盘回车显示搜索
    JS设置和读取Cookie
    正则表达式识别字符串中的URL
    X-Frame-Options配置
    pytest学习笔记
    测试理论基础总结
    redis杂七杂八
  • 原文地址:https://www.cnblogs.com/phpjinggege/p/5647736.html
Copyright © 2011-2022 走看看