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了吧。。。。。
用心写代码,不辜负程序员之名。