打开ewebeditor 目录底下的editor.js文件,找到以下代码:
if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");
替换为:
if(navigator.appVersion.match(/8./i)=='8.') { if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)"); } else { if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()"); }
保存文件,上传至服务器重新刷新网页即可。 |