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;
};
}只要加上以上代码就可以了

本文提供了一个简单的代码段,用于修复Range对象的createContextualFragment方法,适用于某些环境下的JavaScript开发。
1483

被折叠的 条评论
为什么被折叠?



