s
当前位置主页 > jquery文档 > :first-of-type

:first-of-type | jQuery API

2014-12-14 

返回值:jQuery:first-of-type

V1.9概述

选择所有相同的元素名称的第一个兄弟元素。

:first-of-type 选择器匹配元素,在文档树中,相同的父元素并且在其他相同的元素名称之前。

示例

在每一个匹配的div中查找第一个span

<div>
	<span>1</span>
	<span>2</span>
	<span>3</span>
</div>

$("div:first-of-type")
Previous:
上一篇::first-child
Next:
下一篇::last-child
返回顶部