: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"); });测试看看‹/›