jQuery :first-child 选择器
定义和用法
“:first-child” 选择器选择所有作为其父元素第一个子元素的元素。
提示:使用 :last-child 选择器来选择作为其父元素最后一个子元素的元素。
语法
$(":first-child")
亲自试一试 - 示例
选择所有 <div> 元素的第一个 <p> 元素
如何选择所有 <div> 元素的第一个 <p> 元素。
“:first” 和 “:first-child” 之间的区别
显示 “:first” 和 “:first-child” 选择器之间的区别。
“:first”、“:first-child” 和 “:first-of-type” 之间的区别
显示 “:first”、“:first-child” 和 “:first-of-type” 选择器之间的区别。