最新的Web开发教程
 

jQuery :last-of-type Selector

<jquery选择

选择每<p>元素是最后<p>它的父元素:

$("p:last-of-type")
试一试»

定义和用法

:last-of-type选择器选择的是最后一个孩子,一个特定类型的,他们的父母的所有元素。

提示:这是一样的:nth-last-of-type(1)

提示:使用:first-of-type选择器选择自己的父母是第一个孩子的所有元素特定类型的,。


句法

$(":last-of-type")

试一试 - 示例

选择最后一个<p>所有的元素<div>元素
如何选择最后<p>所有的元素<div>元素。

区别:last, :last-child:last-of-type
显示的区别:last, :last-child:last-of-type选择器。


<jquery选择