当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :nth-of-type()用法及代码示例


用法
nth-of-type selector

说明:选择所有元素的父元素的第 n 个子元素,与具有相同元素名称的兄弟元素相关。

  • 添加的版本:1.9jQuery( ":nth-of-type(index/even/odd/equation)" )

    index: 要匹配的每个孩子的索引,以1, 字符串even或者odd,或方程(例如::nth-of-type(even),:nth-of-type(4n))

因为jQuery对:nth-选择器的实现是严格从CSS规范派生的,所以n的值为"1-indexed",表示从1开始计数。对于其他选择器表达式,如 .first() .eq() ,jQuery如下JavaScript 的 "0-indexed" 计数。

可以在W3C CSS specification 中找到有关此用法的进一步讨论。

例子:

找到相对于其兄弟跨度第二的每个跨度。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>nth-of-type demo</title>
  <style>
  .nth {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<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>
 
<script>
$( "span:nth-of-type(2)" )
  .append( "<span> is 2nd sibling span</span>" )
  .addClass( "nth" );
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :nth-of-type()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。