当前位置: 代码迷 >> JavaScript >> ExtJs在IE9下报错:对象不支持“createContextualFragment”属性或方法(解决方案)转
  详细解决方案

ExtJs在IE9下报错:对象不支持“createContextualFragment”属性或方法(解决方案)转

热度:163   发布时间:2012-10-13 11:38:17.0
ExtJs在IE9上报错:对象不支持“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;  
      };  
  } 
  相关解决方案