最新的Web開發教程
 

jQuery :first-child Selector

<jquery選擇

選擇每<p>元素是它的父的第一個孩子:

$("p:first-child")
試一試»

定義和用法

:first-child選擇器選擇是他們的父母的第一個孩子的所有元素。

提示:使用:last-child選擇器選擇是他們的父母的最後一個子元素。


句法

$(":first-child")

試一試 - 示例

選擇第一個<p>所有的元素<div>元素
如何選擇第一個<p>所有的元素<div>元素。

區別:first:first-child
顯示的區別:first:first-child選擇。

區別:first, :first-child:first-of-type
顯示的區別:first, :first-child:first-of-type選擇。


<jquery選擇