[ jquery 选择器 :nth-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{width: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‘>
        /**
           概述
               选择同属于一个父元素之下,并且标签名相同的子元素中的第n个。
              因为jQuery的实现:nth-是严格来自CSS规范,n值是“1-indexed”,也就是说,从1开始计数。对于所有其他选择器表达式比如:eq()或 :even ,jQuery遵循JavaScript的“0索引”的计数。
        */
    $(function(){
         $("span:nth-of-type(2)").addClass(‘hover‘);
    });
</script>
</head>
<body>
    <div id=‘demo‘>
        <div>
          <span>John</span>
          <b>Kim</b>
          <span>Adam</span>
          <b>Rafael</b>
          <span>Oleg</span>
        </div>
        <div>
          <b>Dave</b>
          <span>Ann</span>
        </div>
        <div>
          <i><span>Maurice</span></i>
          <span>Richard</span>
          <span>Ralph</span>
          <span>Jason</span>
        </div>
    </div>
</body>
</html>
时间: 2024-10-17 16:55:58

[ jquery 选择器 :nth-of-type() ] 选取指定类型(p)父元素下的第几个子元素的相关文章

[ jquery 选择器 :even ] 此方法选取指定jquery对象中的偶数对象

此方法选取指定jquery对象中的偶数对象: 实例: <!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,k

[ jquery 选择器 :odd ] 此方法选取指定jquery对象中的奇数对象

<!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-

[ jquery 选择器 :nth-child ] 选取匹配其父元素下的第N个子或奇偶元素

选取匹配其父元素下的第N个子或奇偶元素: 实例: <!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,key

[ jquery 选择器 :last ] 此方法选取jquery对象中的最后一个对象

此方法选取jquery对象中的最后一个对象,与:first相对 实例: <!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,k

[ jquery 选择器 :first ] 此方法获取指定jquery对象下的第一个元素

获取匹配的第一个元素: 实例: <!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'>

[ jquery 选择器 :header ] 此方法选取匹配如 h1, h2, h3之类的标题元素

此方法选取匹配如 h1, h2, h3之类的标题元素 实例: <!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,keywor

[ jquery 选择器 :empty ] 此方法选取所有不包含子元素或者文本的空元素

此方法选取所有不包含子元素或者文本的空元素: 实例: <!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,k

[ jquery 选择器 :visible ] 此方法选取匹配所有的可见元素

此方法选取匹配所有的可见元素: 实例: <!DOCTYPE html> <html class='html'> <head class='head'> <meta charset=' utf-8'> <meta name='author' content='http://www.52jb.net/' /> <script type='text/javascript' src='./js/jquery-1.12.1.min.js'>&l

jquery 选择器(name,属性,元素)大全

jQuery 选择器大体上可分为:基本选择器.层次选择器.过滤选择器.表单选择器. 其中过滤选择器可以分为:简单过滤选择器.内容过滤选择器.可见性过滤选择器.属性过滤选择器.子元素过滤选择器.表单对象属性过滤选择器.选择器是jQuery最基础的东西,下面向大家介绍jquery+%D1%A1%D4%F1%C6%F7/" target="_blank">jquery 选择器的用法 选择器是jQuery的核心组成部分,因为使用jQuery操作DOM时所做的每件事都和选择器密切