document.createElementNS在IE8中不起作用

时间:2014-11-23 07:22:07

标签: html svg internet-explorer-8 raphael

var pattern = document.createElementNS("http://www.w3.org/2000/svg", "pattern");

我试过了

if (!('createElementNS' in HTMLDocument.prototype)) {
    HTMLDocument.prototype.createElementNS = function(ns, name) {
        if (ns) throw "sorry, this browser does not support namespaces";
        return HTMLDocument.prototype.createElement.call(this, name);
    };
}

但这不起作用。

0 个答案:

没有答案