• [ jquery 选择器 :nth-last-of-type() ] 选取指定(p)父元素下的从后向前数的指定第一个子元素(无关目标元素在父元素中所处的位置)


    选取指定(p)父元素下的从后向前数的指定第一个子元素(无关目标元素在父元素中所处的位置):

    实例:

    <!DOCTYPE html>
    <html lang='zh-cn'>
    <head>
    <title>Insert you title</title>
    <meta http-equiv='description' content='this is my page'>
    <meta http-equiv='keywords' content='keyword1,keyword2,keyword3'>
    <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
    <script type='text/javascript' src='./js/jquery-1.12.1.min.js'></script>
    <style type='text/css' >
        *{margin:0;padding:0;}
        html{font:400 15px/1.2em 'Courier New';color:#666;}
        div > *{margin:10px 0;cursor:pointer;}
        #demo{750px;margin:75px auto;}
        button{padding:5px 15px;border:0;outline:none;margin-top:-5px;border-radius:2px;font:400 12px/1.2em 'Courier New';}
        .active{background-color:yellow;transition: .3s;}
        .hover{background-color:red;transition: .3s}
        p{text-indent:8px;}
    </style>
    <script type='text/javascript'>
            /**
               概述
                  选取指定(p)父元素下的从后向前数的指定第一个子元素(无关目标元素在父元素中所处的位置)
            */
        $(function(){
             $('p:nth-last-of-type(1)').addClass('active');    
        });
    </script>
    </head>
    <body>
        <div id='demo'>     
            <ul id='list'>      
                <li>The first paragraph in div.</li>
                <li>The first paragraph in div.</li>
                <li>The first paragraph in div.</li>
                <li>The first paragraph in div.</li>
                <li>The first paragraph in div.</li>
            </ul>
            <p class='test'>The first paragraph in div.</p>
            <div style='border:1px solid #3695BC'>      
                <p>The first paragraph in div.</p>
            </div>
            <div style='border:1px solid #3695BC'>
                <p>The first paragraph in another div.2</p>
                <p>The last paragraph in another div.2</p>
            </div>
            <div>
                <p>The first paragraph in div.</p>
            </div>
            <div style='border:1px solid #3695BC'>
               <span style='white-space: pre-wrap;'> The first span in div.</span>
               <p>The first paragraph in div.</p>
               <span style='white-space: pre-wrap;'> The first span in div.</span>
            </div>
        </div>
    </body>
    </html>
  • 相关阅读:
    深入浅出单实例Singleton设计模式
    设计模式之监听器模式
    Android 驱动(二) IIC简单介绍
    用XCA(X Certificate and key management)可视化程序管理SSL 证书(3)--创建自己定义的凭证管理中心(Certificate Authority)
    编译android-4.3.1_r源代码并刷到自己的Galaxy Nexus I9250真机上
    C++中的单例模式
    MessageDigest简单介绍
    白话经典算法系列之中的一个 冒泡排序的三种实现
    KNN算法理解
    TCP/IP数据包结构具体解释
  • 原文地址:https://www.cnblogs.com/mysearchblog/p/5615131.html
Copyright © 2020-2023  润新知