帝国cms插件(帝国cms负载)
默认FCK2.3.6在IE10中会出现这个错误:SCRIPT438: The object does not support the "selectSingleNode" attribute or method
fckeditorcode_ie.js,第52 行,字符1021,现已解决
查看IE10的脚本错误信息:
SCRIPT438: 对象不支持“selectSingleNode”属性或方法
fckeditorcode_ie.js,第52 行字符1021
文件路径:e/admin/ecmseditor/infoeditor/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);
尝试{B.responseType='msxml-document';} catch (e){};