.first()

.first()返回类型:jQuery

描述:把匹配的元素集合缩小为集合中第一个元素。

  • 增补版本:1.4.first()

    • 此方法不接受任何参数。

给定一个jQuery对象,代表一个DOM元素的集合,.first()方法构造了一个新的jQuery对象,来自于集合中第一个元素。

请琢磨一个带有简单列表的网页:

1
2
3
4
5
6
7
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
<li>list item 4</li>
<li>list item 5</li>
</ul>

我们可以将此方法适用于列表项的集合。

1
$( "li" ).first().css( "background-color", "red" );

这次调用的结果是第一项出现红色背景。

示例:

高亮希落中的第一个<span>。

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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>first demo</title>
<style>
.highlight{
background-color: yellow
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p>
<span>Look:</span>
<span>This is some text in a paragraph.</span>
<span>This is a note about it.</span>
</p>
<script>
$( "p span" ).first().addClass( "highlight" );
</script>
</body>
</html>

演示: