當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。