jQuery :last-child 选择器

jQuer 选择器

:last-child选择器选取属于其父元素的最后一个子元素。

使用:first-child选择器来选取属于其父元素的第一个子元素。

语法:

$(":last-child")

实例

选择属于其父级的最后一个子级的每个<p>元素:

$(document).ready(function(){
  $("p:last-child").css("background", "coral");
});
测试看看‹/›

选择所有<div>元素中的最后一个<p>元素:

$(document).ready(function(){
  $("div p:last-child").css("background", "coral");
});
测试看看‹/›

jQuer 选择器