使用jQuery选择不在元素中的文本
说我有这个:
hello
hello Hello
如何使用jQuery抓取两个P标签之间的文本问候?
$('.myDiv') .contents() .filter(function() { return this.nodeType == Node.TEXT_NODE; }).text();
如何使用jQuery选择文本节点?
js1568有更好的方法
$(’div.myDiv’)。filter(’p’)。text()可能会起作用。
我把它拿回来,filter不起作用。 也许是这样的:
var jText = $('div.myDiv').clone(); jText.find('p').remove(); jText.text();