默認的FCK2.3.6在IE10中會有這個錯誤:SCRIPT438: 對象不支持“selectSingleNode”屬性或方法
fckeditorcode_ie.js, 行52 字符1021,現(xiàn)己解決
查看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);之間插入如下代碼
try {B.responseType = "msxml-document";} catch (e){};
這樣就解決了帝國cms后臺編輯器在IE10下的兼容問題!