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


JQuery :first用法及代碼示例


用法
first selector

不推薦使用的版本:3.4

說明:選擇第一個匹配的 DOM 元素。

  • 添加的版本:1.0jQuery( ":first" )

從 jQuery 3.4 開始, 這:firstpseudo-class 已棄用。從您的選擇器中刪除它並稍後使用過濾結果.first().

:first pseudo-class 等同於 :eq( 0 ) 。它也可以寫成 :lt( 1 ) 。雖然這僅匹配單個元素,但 :first-child 可以匹配多個元素:每個父元素一個。

其他注意事項:

  • 因為 :first 是 jQuery 擴展而不是 CSS 規範的一部分,所以使用 :first 的查詢無法利用本機 DOM querySelectorAll() 方法提供的性能提升。為了在使用 :first 選擇元素時獲得最佳性能,首先使用純 CSS 選擇器選擇元素,然後使用 .filter(":first")
  • 所選元素按照它們在文檔中出現的順序排列。

例子:

查找第一個表格行。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>first demo</title>
  <style>
  td {
    color: blue;
    font-weight: bold;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<table>
  <tr><td>Row 1</td></tr>
  <tr><td>Row 2</td></tr>
  <tr><td>Row 3</td></tr>
</table>
 
<script>
$( "tr:first" ).css( "font-style", "italic" );
</script>
 
</body>
</html>

演示:

相關用法


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