$("p:first")
$("p:first-child")
两个有何区别?
$("p:first")选择器选取第一个p元素
$("p:first-child"):first-child 选择器选取属于父元素p的第一个子元素。