当前位置: 代码迷 >> JavaScript >> 解决ie9 不支持extjs3.3对象的 “createContextualFragment”属性或步骤
  详细解决方案

解决ie9 不支持extjs3.3对象的 “createContextualFragment”属性或步骤

热度:149   发布时间:2012-09-09 09:27:54.0
解决ie9 不支持extjs3.3对象的 “createContextualFragment”属性或方法

在页面中添加如下Js代码即可

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;
         };
     }

? 原文:http://www.sencha.com/forum/showthread.php?125869-Menu-shadow-probolem-in-IE9&p=579336

?

  相关解决方案