读书人

解决ie9 不支持extjs3.3对象的 “crea

发布时间: 2012-09-09 09:27:54 作者: rapoo

解决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

?

读书人网 >JavaScript

热点推荐