有没有办法使用jQuery删除不包含在任何标签中的文本
<p>This is some text</p> This is "unwrapped" text //to be removed <span>some more text</span>
感谢您的帮助
解决方法
使用
this question的答案:
$(elem) .contents() .filter(function() { return this.nodeType == 3; //Node.TEXT_NODE }).remove();