全部展开 | 全部折叠 | 速查表

返回值: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")