Fork me on GitHub

eWebEditor浏览器兼容 ie8 ie7

eWebEditor浏览器兼容问题 ie8 ie7

使eWebEditor浏览器兼容 ie8 ie7

eWebEditor在ie8不显示

打开Include下的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()");
}

ie8不支持anonymous方法。所以ie8时y用onclick。

好吧,ie6还有亲们用么?不知道。基本大家都ie8了吧。。。。。

posted @ 2012-10-30 16:05  思考的大腿  阅读(180)  评论(0编辑  收藏  举报