最新的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选择