.last()

.last()返回类型:jQuery

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

  • 增补版本:1.4.last()

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

给定一个jQuery对象,代表一些DOM元素,.last()方法构造了一个来自集合中最后一个元素的新的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" ).last().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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>last 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" ).last().addClass( "highlight" );
</script>
</body>
</html>

演示: