我使用当前代码创建新的xml文档,然后我尝试更改root
元素的前缀,但我不能这样做。
var node = new DOMParser().parseFromString("<root><first/></root>", "application/xml");
var root = node.documentElement;
root.prefix = "ds";
root.outerHTML(); // <root><first/></root>
我找到了有关prefix
属性的说明。应该设置/获取,但是当我尝试设置prefix
时,没有任何事情发生。
还有其他方法可以更改元素的前缀值吗?