: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>
演示结果