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


JQuery :first-of-type用法及代碼示例


用法
first-of-type selector

說明:選擇所有同名的兄弟元素中的第一個元素。

  • 添加的版本:1.9jQuery( ":first-of-type" )

:first-of-type 選擇器匹配沒有其他元素的元素,這些元素在文檔樹中具有相同的父元素和相同的元素名稱。

例子:

在每個匹配的 div 中找到第一個跨度並向其添加一個類。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>first-of-type demo</title>
  <style>
  span.fot {
    color: red;
    font-size: 120%;
    font-style: italic;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div>
  <span>Corey,</span>
  <span>Yehuda,</span>
  <span>Adam,</span>
  <span>Todd</span>
</div>
<div>
  <b>Nobody,</b>
  <span>Jörn,</span>
  <span>Scott,</span>
  <span>Timo</span>
</div>
 
<script>
$( "span:first-of-type" ).addClass( "fot" );
</script>
 
</body>
</html>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 :first-of-type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。