说我有这个:
<div class='myDiv'> <p>hello</p> hello <p>Hello</p> </div>
如何使用jQuery抓取两个P标签之间的文本问候?
解决方法
$('.myDiv') .contents() .filter(function() { return this.nodeType == Node.TEXT_NODE; }).text();