我们的一个应用程序使用文档Object的createAttributNS,setAttributeNS DOM Level 2 API,它似乎从最新的chrome版本中删除了!
有没有解决方法呢?**
答案 0 :(得分:1)
将此脚本添加到chrome不支持的函数createAttributeNS作为Dom函数
Document.prototype.createAttributeNS = function(name, ns) {
var attr = this.createAttribute(name);
attr.namespaceURI = ns;
return attr;
}