我必须更改 XML 的“未知”内容。结构和内容本身是有效的。原来的
<blabla foo="bar">
<aa>asas</aa>
<ff>
<cc>
<dd />
</cc>
</ff>
<gg attr2="2">
</gg>
...
...
</blabla>
变成
<blabla foo="bar">
<magic>
<aa>asas</aa>
<ff>
<cc>
<dd />
</cc>
</ff>
<gg attr2="2">
</gg>
...
...
</magic>
</blabla>
因此,直接在文档根节点 (document.documentElement) 下添加一个子节点,并在其下“推送”“原始”子节点。在这里,它必须用纯 javascript (ecmascript) 完成。
现在的想法是
// Get the root node
RootNode = mymagicdoc.documentElement;
// Create new magic element (that will contain contents of original root node)
var magicContainer = mymagicdoc.createElement("magic");
// Copy all root node children (and their sub tree - deep copy) to magic node
/* ????? here
RootNodeClone = RootNode.cloneNode(true);
RootNodeClone.childNodes......
*/
// Remove all children from root node
while(RootNode.hasChildNodes()) RootNode.removeChild(RootNode.firstChild);
// Now when root node is empty add the magicContainer
// node in it that contains all the children of original root node
RootNode.appendChild(magicContainer);
如何做到这一点 /* */ 步骤?或者,也许有人通常有更好的解决方案来实现理想的结果?
先感谢您!
答:maerics 的解决方案非常有效。