codecamp

jQuery :first-of-type 选择器

jQuery :first-of-type 选择器

jQuery 选择器 jQuery 选择器

实例

选取属于其父元素的第一个 <p> 元素的每个 <p> 元素:

$("p:first-of-type")

尝试一下 »

定义和用法

:first-of-type 选择器选取属于其父元素的特定类型的第一个子元素的所有元素。

提示:该选择器与 :nth-of-type(1) 相同。

提示:请使用 :last-of-type 选择器来选取属于其父元素的特定类型的最后一个子元素的所有元素。


语法

$(":first-of-type")


实例

尝试一下 - 实例

选取所有 <div> 元素的第一个 <p> 元素
如何选取所有 <div> 元素的第一个 <p> 元素。

:first、:first-child 和 :first-of-type 之间的不同
演示 :first、:first-child 和 :first-of-type 选择器之间的不同。


jQuery 选择器 jQuery 选择器

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }