用法first-child selector
first-child selector
说明:选择作为其父元素的第一个子元素的所有元素。
添加的版本:1.1.4
jQuery( ":first-child" )
虽然 .first() 只匹配一个元素,但 :first-child
选择器可以匹配多个元素:每个父元素一个。这相当于 :nth-child(1)
。
例子:
在每个匹配的 div 中查找第一个跨度以加下划线并添加悬停状态。
|
演示:
相关用法
- JQuery :first-of-type用法及代码示例
- JQuery :first用法及代码示例
- JQuery :file用法及代码示例
- JQuery UI :focusable Selector用法及代码示例
- JQuery :focus用法及代码示例
- JQuery :nth-child()用法及代码示例
- JQuery :empty用法及代码示例
- JQuery :root用法及代码示例
- JQuery :last-child用法及代码示例
- JQuery :last用法及代码示例
- JQuery :only-child用法及代码示例
- JQuery :password用法及代码示例
- JQuery :eq()用法及代码示例
- JQuery UI :tabbable Selector用法及代码示例
- JQuery :disabled用法及代码示例
- JQuery :parent用法及代码示例
- JQuery :even用法及代码示例
- JQuery :radio用法及代码示例
- JQuery :contains()用法及代码示例
- JQuery :reset用法及代码示例
- JQuery :input用法及代码示例
- JQuery :button用法及代码示例
- JQuery UI :data() Selector用法及代码示例
- JQuery :checkbox用法及代码示例
- JQuery :gt()用法及代码示例
注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :first-child。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。