返回值:jQuerylast()
选择最后一个匹配到的元素。
-
1.4 新增last()
注意,:last
只会选择单个元素,这个元素是这个选择器之前的选择器匹配到的元素集合中的最后一个元素。
示例:
查找表格中最后一行。
<!DOCTYPE html>
<html>
<head>
<style>.highlight{background-color: yellow}</style>
<script src="jquery.min.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>