:last 选择器

last selector

描述:选择最后的匹配元素。

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

注意:last通过筛选当前的jQuery集合,选中一个元素,匹配它内部的最后一个元素。

补充说明:

  • 因为:last是一个jQuery扩展,不是CSS规范文档的一部分,所以使用:last查询不能利用原生DOMquerySelectorAll()方法提供的性能提升。若要在使用:last选择元素时取得最佳性能,请用纯CSS选择器选中元素,然后使用.filter(":last")

示例:

找到最后一个表格行。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>last demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<table>
<tr><td>First Row</td></tr>
<tr><td>Middle Row</td></tr>
<tr><td>Last Row</td></tr>
</table>
<script>
$( "tr:last" ).css({ backgroundColor: "yellow", fontWeight: "bolder" });
</script>
</body>
</html>

演示: