.last()
.last() 官网原E文: jQuery
描述: 获取元素集合中最后一个元素。
version added: 1.4.last()
如果一个jQuery对象表示一个DOM元素的集合,.last()
方法从最后一个匹配元素中构造一个新的jQuery对象。
考虑一个页面上的一个简单的列表:
<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>
我们可以应用此方法设置列表项:
$('li').last().css('background-color', 'red');
调用的结果是最后一个项目为红色背景。
Example:
Highlight the last span in a paragraph.
<!DOCTYPE html>
<html>
<head>
<style>.highlight{background-color: yellow}</style>
<script src="http://code.jquery.com/jquery-latest.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>