问答详情
源自:4-1 DOM节点删除之empty()的基本用法

只想移除第一个p怎么办呢

$("#test").empty("#test p:first-child")为什么不能通过此代码只移除第一个p元素

提问者:Sunshine3721995 2016-07-28 11:53

个回答

  • 咿呀咿呀哒哒
    2016-09-06 15:37:13

    $("#test  p:first-child").empty()  这样写可以,.empty()不能有参数

  • 西风潇潇
    2016-07-28 12:14:40

    因为jQuery根本就没有这样的用法,.empty()不能有参数,remove()可以有参数。