Ewebeditor在win7下不能插入图片

修改editor目录下的editor.js文件

if(element.YUSERONCLICK){


try{


eval(element.YUSERONCLICK+"onclick(event)");


  }


  catch(e){


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


  }
  }



anonymous函数在ie8.0不能使用,
ie8.0中只能用onclick(event),
而其他8.0以下的只能用anonymous
所以这里要使用javascript的try函数,对客户端ie用8.0代码进行试运行。如果出错,再尝试8.0以下的代码进行处理。

你可能感兴趣的:(Ewebeditor在win7下不能插入图片)