您的位置:首页 > Web前端 > JavaScript

ExtJs 3.0 不兼容 IE9

2012-07-27 08:50 295 查看
报错:

错误: 对象不支持“createContextualFragment”属性或方法

解决办法:在页面执行时加入如下代码

if ((typeof Range !== "undefined") && !Range.prototype.createContextualFragment) {
Range.prototype.createContextualFragment = function (html) {
var frag = document.createDocumentFragment(),
div = document.createElement("div");
frag.appendChild(div);
div.outerHTML = html;
return frag;
};
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: