希望有人可以提供帮助。我需要抓取正文中的任何文本节点。即使它不包含在任何其他元素中。
我试过了:
$("p, div, html, body").each(function(){
$(this).contents().filter(function() {
var regExText = /(\w|\d|,|;|&)/;
if (this.nodeType == 3 && regExText.test(this.nodeValue)) {
$(this).wrap('<span></span>');
}
});
});
这是在 Ps 和 Divs 中抓取它们,而不是在 body 本身中。