问答详情
源自:2-7 jQuery选择器之基本筛选选择器

jquery选择器

$("p:first")

$("p:first-child")

两个有何区别?

提问者:web_東 2018-03-09 00:07

个回答

  • qq_忽而今夏_6
    2018-03-09 13:54:54
    已采纳

    $("p:first")选择器选取第一个p元素

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