:last 选择器| jqueryAPI 2.2 中文手册- AspRain.cn 致力于Web开发技术翻译整理

jQuery API 2.2.0

:last 选择器

分类:选择器 > 基本筛选选择器 | 选择器 > jQuery扩展选择器

last selector

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

加入于: 1.0
jQuery( ":last" )

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

其它说明

  • 因为:last是一个jQuery扩展,不是CSS规范文档的一部分,使用:last查询不能充分利用原生的DOM提供的querySelectorAll()方法来提高性。要想在使用:last选择元素时取得最佳性能,请先使用一个纯CSS选择器选择元素,然后使用.filter(":last")作筛选。

示例

找到最后一个表行。

<!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>

演示结果

如果网页上不能运行示例,请点击http://www.asprain.cn/jQueryAPI/last-selector.htm查看示例。

如果你觉得本文档对你有用,欢迎给翻译作者支付宝打赏,支持翻译作者源源不断翻译更多有用的技术文档。