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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。