我使用它来查找所有注册商标符号和tm符号,并将它们包含在带有类的sup标签中。我环顾四周,因为有几个人已经问过这个问题,但似乎没有人解决我的问题。这是代码
$('body :not(script,sup)').contents().filter(function(){
return this.nodeType === 3;
}).replaceWith(function() {
return this.nodeValue.replace(/[™®]/g, '<sup class="registermark">$&</sup>');
});
错误发生在第一行
$('body :not(script,sup)').contents().filter(function(){