DOM Level2 API document.createAttributeNS()在最新的chrome版本中未定义?

时间:2014-04-15 18:55:43

标签: javascript html google-chrome dom

我们的一个应用程序使用文档Object的createAttributNS,setAttributeNS DOM Level 2 API,它似乎从最新的chrome版本中删除了!

有没有解决方法呢?**

1 个答案:

答案 0 :(得分:1)

将此脚本添加到chrome不支持的函数createAttributeNS作为Dom函数

Document.prototype.createAttributeNS = function(name, ns) {
      var attr = this.createAttribute(name);
      attr.namespaceURI = ns;
      return attr;
}