JQuery - SyntaxError:缺少形式参数

时间:2016-01-07 17:26:17

标签: javascript jquery

我使用它来查找所有注册商标符号和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(){

0 个答案:

没有答案