• jQuery常用属性过滤选择器


    常用属性过滤选择器

    用户名:
    密 码:
    性 别:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
            <title>常用属性过滤选择器</title>
        <script src="scripts/jquery-3.1.1.js" type="text/javascript"></script>
        <script type="text/javascript">
                $(function(){
                    //选取所有包含type的元素的长度
                   // alert($("[type]").length);
                    //查找form下的并且包含type属性的所有元素
                    //alert($("form *[type]").length);
                    //alert($("[value^='提交']").length);//2  以...开始
                    //alert($("[value$='表单']").length);//3  以...结尾
                   // alert($("[value*='提']").length);    //3  包含...的
                   // alert($("input[name=sex]").length);
                   // alert($("input[name!=sex]").length);
                    //[] []多个属性的判断
                    alert($("input[class=c1] [type=text]").length);
                });
    
        </script>
    </head>
    <body>
    <form id="form" action="#" method="post">
        用户名:<input id="name" class="c1" type="text" name="name"><br/>
        密 码:<input id="password" class="c1" type="password" name="name"><br/>
        性 别:<input name="sex" type="radio" value="male" checked>男
        <input name="sex" type="radio" value="female">女<br/>
        <input type="submit" value="提交表单">
        <input type="submit" value="提交 表单">
        <input type="submit" value="提 交 表单">
        <input type="reset" value="重置"><br/>
        <button type="submit">提交</button>
        <button type="reset">重置</button>
    </form>
    </body>
    </html>
    

      

  • 相关阅读:
    pdp,ppp,tcpip,socket联系
    EC20 AT指令
    pdp ppp
    安装 FreeSwitch PBX
    PCMA和PCMU编码带宽计算
    gdb使用symbol文件调试程序
    freeswitch 常用配置
    如何管理分布式团队
    测试环境的简单理解
    六个节点三主三从Redis集群最简单搭建方法
  • 原文地址:https://www.cnblogs.com/john568300/p/6420961.html
Copyright © 2020-2023  润新知