最新的Web開發教程
 

jQuery :first-of-type Selector

<jquery選擇

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

$("p:first-of-type")
試一試»

定義和用法

:first-of-type選擇器選擇是第一個孩子,一個特定類型的,他們的父母的所有元素。

提示:這是一樣的:nth-of-type(1)

提示:使用:last-of-type選擇器選擇自己的父母是最後一個子元素的所有特定類型的,。


句法

$(":first-of-type")

試一試 - 示例

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

區別:first, :first-child:first-of-type
顯示的區別:first, :first-child:first-of-type selectors


<jquery選擇