:last-of-type选择器选择所有元素,这些元素是其父元素的特定类型的最后一个子元素。
这与:nth-last-of-type(1)相同。
使用:first-of-type选择器可以选择所有元素,它们是其父元素的特定类型的第一个子元素。
$(":last-of-type")
选择属于其父级的最后一个<p>元素的每个<p>元素:
$(document).ready(function(){ $("p:last-of-type").css("background", "coral"); });测试看看‹/›
选择所有<div>元素中的最后一个<p>元素:
$(document).ready(function(){ $("div p:last-of-type").css("background", "coral"); });测试看看‹/›