在互聯(lián)網(wǎng)的快速發(fā)展中,伴隨著IE的不斷升級,老版本的千博網(wǎng)站eWebEditor編輯器不支持IE7、8,給站長維護網(wǎng)站帶來了較大的困惱。結(jié)果鶴翔網(wǎng)絡(luò)技術(shù)人員的努力,成功解決千博網(wǎng)站eWebEditor編輯器不支持IE7、8的問題,解決方法如下:

編輯器目錄JS下的EDITOR.JS文件,找到如下代碼 if (element.YUSERONCLICK) { eval(element.YUSERONCLICK + "anonymous()"); } 再換成如下代碼: if(navigator.appVersion.match(/8./i)=='8.' || navigator.appVersion.match(/7./i)=='7.'){ if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)"); //IE8 or IE7 } else { if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()"); //IE6 } 如果你還有關(guān)于其他網(wǎng)站eWebEditor編輯器不支持IE的問題,歡迎與我們聯(lián)系。 |