加载页面时,IE右下角显示错误。点进去后看到错误信息为js报错 正则表达式中缺少']'。
找到文件中出错的地方:
return this.each(function(){var that=$(this);var str=that.html();var re=new RegExp("(["+k+"])","gi");var newhtml=str.replace(re,"<u>$1</u>");that.html(newhtml);});};$.cookie=function(key,value,options){if(arguments.length>1&&(!/Object/.test(Object.prototype.toString.call(value))||value===null||value===undefined)){options=$.extend({},options);if(value===null||value===undefined){options.expires=-1;}
google了一下,google给出的答案是:
于是将出错的地方改成"(["+k+"\])"。刷新后错误依然还在。于是又做了几次尝试,最后竟然解决了。
最后解决办法:"(["+k+"/])"。