解决eWebEditor在ie8下上传失效的问题

1、找到eWebEditor编辑器所在的目录,然后搜索到editor.js文件,由于eWebEditor有很多个版本,所以editor.js文件所在的目录也有所不同,有的可能在Include目录下,有的可能在js目录下。


 2、用记事本打开editor.js文件,找到如下代码:

if (element.YUSERONCLICK) {
    eval(element.YUSERONCLICK + "anonymous()");
}


    由于eWebEditor编辑器版本不同,有的可能找不到上面的代码,而是下面这样的代码,两种代码只是书写格式不同而已,含义是一样的:

if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");

   
    3、将上面的代码替换为下面的代码即可:

if(navigator.appVersion.match(/8./i)=='8.')
    {
      if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)");  
   }
else

   {
     if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");
}

你可能感兴趣的:(解决eWebEditor在ie8下上传失效的问题)