zoukankan      html  css  js  c++  java
  • jQuery实现CheckBox全选、全不选

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title>jQuery实现CheckBox全选、全不选</title>
    <script src="http://code.jquery.com/jquery-1.4.4.min.js" type="text/javascript"></script>    
    <script type="text/javascript">
        $(function() {
           $("#checkAll").click(function() {
                $('input[name="subBox"]').attr("checked",this.checked); 
            });
            var $subBox = $("input[name='subBox']");
            $subBox.click(function(){
        	   $("#checkAll").attr("checked",$subBox.length == $("input[name='subBox']:checked").length ? true : false);
            });
        });
    </script>
    
    </head>
    <body>
        <div>
            <input id="checkAll" type="checkbox" />全选
            <input name="subBox" type="checkbox" />项1
            <input name="subBox" type="checkbox" />项2
            <input name="subBox" type="checkbox" />项3
            <input name="subBox" type="checkbox" />项4
        </div>
    </body>
    </html>

  • 相关阅读:
    将n个不同的球放到m个相同的袋子里有多少种方案?

    平面分割直线2
    差分
    并查集(UnionFind)
    约瑟夫环公式
    Kruskal
    线性欧拉筛
    SPAF
    Dijkstra
  • 原文地址:https://www.cnblogs.com/moqiang02/p/4061562.html
Copyright © 2011-2022 走看看