:first 选择器

first selector

描述:选择第一个匹配的DOM元素。

  • 增补版本:1.0jQuery( ":first" )

:first伪类等同于:eq( 0 )。还可以把它写为:lt( 1 )。这只匹配一个元素,与此同时:first-child可能匹配不止一个元素:每个父元素都有一个。

补充说明:

  • 因为:first是一个jQuery扩展,不是CSS规范文档的一部分,所以使用:first查询不能利用原生DOM querySelectorAll()方法提供的性能提升。若要在使用:first选择元素时实现最佳性能,请先用一个纯CSS选择器选择元素,然后使用.filter(":first")
  • 选中的元素是按它们在文档中出现的顺序。

示例:

找到第一个表行。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!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-1.10.2.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>

演示: