Using .text() to retrieve only text not nested in child tags

后端 未结 25 1698
隐瞒了意图╮
隐瞒了意图╮ 2020-11-21 05:55

If I have html like this:

  • This is some text First span text
  • 25条回答
    •  滥情空心
      2020-11-21 06:51

      This untested, but I think you may be able to try something like this:

       $('#listItem').not('span').text();
      

      http://api.jquery.com/not/

    提交回复
    热议问题