extjs 2.0.2 ext는 ie9에서 오류를 보고합니다.

2033 단어 extIE 호환
페이지에 IE9이 호환되지 않음
<script type="text/javascript">
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;
    };
}

</script>

 
 
IE9 Tree 오류 확인
ext-all.js에서 이 get AttributenS 방법을 찾습니다.
getAttributeNS : Ext.isIE ? function(ns, name){
         var d = this.dom;
         var type = typeof d[ns+":"+name];
         if(type != 'undefined' && type != 'unknown'){
             return d[ns+":"+name];
         }
         return d[name];
     } : 
       

 
 --》
getAttributeNS : Ext.isIE ? function (ns, name) {  
        var d = this .dom;  
        var type = typeof d[ns + ":" + name];  
        if (type != "undefined" && type != "unknown" ) {  
          return d[ns + ":" + name]  
        }  
        type = typeof d[name];  
        if (type != "undefined" && type != "unknown" )  
        {  
          return d[name];  
        }  
        type=typeof d.getAttribute(ns + ":" + name);  
        if (type != "undefined" && type != "unknown" )  
        {  
          return d.getAttribute(ns + ":" + name);  
        }  
        type=typeof d.getAttribute(name);  
        if (type != "undefined" && type != "unknown" )  
        {  
          return d.getAttribute(name);  
        }  
        return null ;  

좋은 웹페이지 즐겨찾기