jQuery1.8.0帮助手册选择器:first-child
上一篇::nth-child 下一篇::last-child

:first-child

返回值:Array:first-child

V1.1.4概述

匹配第一个子元素

':first' 只匹配一个元素,而此选择符将为每个父元素匹配一个子元素

示例

描述:

在每个 ul 中查找第一个 li

HTML 代码:
  • John
  • Karl
  • Brandon
  • Glen
  • Tane
  • Ralph
jQuery 代码:
$("ul li:first-child")
结果:
[ 
  • John
  • ,
  • Glen
  • ]
    上一篇::nth-child 下一篇::last-child