jQuery :first-child 选择器

jQuer 选择器

:first-child选择器选择所有属于其父级第一个子级的元素。

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

语法:

$(":first-child")

实例

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

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

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

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

jQuer 选择器