亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

jQuery :first-child 選擇器

jQuer 選擇器

:first-child選擇器選擇所有屬于其父級第一個(gè)子級的元素。

使用:last-child選擇器來選擇屬于其父級的最后一個(gè)子級的元素。

語法:

$(":first-child")

實(shí)例

選擇屬于其父級的第一個(gè)子級的每個(gè)<p>元素:

$(document).ready(function(){
  $("p:first-child").css("background", "coral");
});
測試看看?/?

選擇所有<div>元素中的第一個(gè)<p>元素:

$(document).ready(function(){
  $("div p:first-child").css("background", "coral");
});
測試看看?/?

jQuer 選擇器