查看IE10的脚本错误信息: SCRIPT438: 对象不支持“selectSingleNode”属性或方法 fckeditorcode_ie.js, 行52 字符1021
打开/editor/js/fckeditorcode_ie.js 然后找到52行代码 FCKXml.prototype={LoadUrl:function(A){this.Error=false;var B=FCKTools.CreateXmlObject('XmlHttp');if (!B){this.Error=true;return;};B.open("GET",A,false);B.send(null);
在B.open("GET",A,false);和B.send(null);之间插入如下代码
try {B.responseType = "msxml-document";} catch (e){};
刷新发现己经兼容IE10了. ============================================= 不过,IE10下,还有问题,那个编辑器的按钮都无法使用,会报:
无法获取未定义或 null 引用的属性“toLowerCase”
搜了半天,没有解决方案~~伤不起。
只好现在网页head里加: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" /> 让IE使用兼容模式显示,先凑合下吧。
|