zoukankan      html  css  js  c++  java
  • 用jQuery实现(全选、反选、全不选功能)

    在jQuery选择器的基础下我们实现一个全选,反选,全不选功能!

        <script type="text/javascript">
            $(function ()
            {
                //全选
                $("#selectAll").click(function () {
                    //attr在HTML推荐非固有(用户自定义)属性是使用
                    //prop在HTMl元素固有属性的时候使用
                    $("input[name='gx']").each(function () {//input[name='gx']属性过滤选择器
                        $(this).prop("checked", true);
                    })
                });
                //全不选
                $("#selectNotAll").click(function () {
                    $("input[name='gx']").each(function () {
                        $(this).prop("checked", false);
                    })
                });
                //反选
                $("#selectRevorse").click(function ()
                {
                    $("input[name='gx']").each(function ()
                    {
                        $(this).prop("checked",!this["checked"]);
                    });
                })
            })
        </script>

  • 相关阅读:
    IO模型(一)
    协程(效率最快、重点)--初识协程、gevent模块、协程爬虫、协程socket(一)
    servlet工作原理解析
    servlet:servletconfig对象和它在开发过程中的应用场景
    servlet:线程安全问题
    servlet:启动的时机
    servlet:第一个demo
    安装myeclipse的一些配置
    同时安装32和64位的jdk
    fiddler:网络限速
  • 原文地址:https://www.cnblogs.com/qinwenfeng/p/9497116.html
Copyright © 2011-2022 走看看