XML DOM Clone Nodes - shahzade baujiti

Breaking

Monday, April 22, 2019

XML DOM Clone Nodes

Toggle navigation
TUTORIAL HOME
XML DOM Clone Nodes
❮ Previous Next ❯
- Examples
The examples below use the XML file books.xml.
Copy a node and append it to an existing node
This example uses cloneNode() to copy a node and append it to the root node of the XML document

×
Header
Copy a Node
The cloneNode() method creates a copy of a specified node.

The cloneNode() method has a parameter (true or false). This parameter indicates if the cloned node should include all attributes and child nodes of the original node.

The following code fragment copies the first <book> node and appends it to the root node of the document:

Example
oldNode = xmlDoc.getElementsByTagName('book')[0];
newNode = oldNode.cloneNode(true);
xmlDoc.documentElement.appendChild(newNode);
Result:

Everyday Italian
Harry Potter
XQuery Kick Start
Learning XML
Everyday Italian
»
Example explained:

Suppose "books.xml" is loaded into xmlDoc
Get the node to copy (oldNode)
Clone the node into "newNode"
Append the new node to the the root node of the XML document

❮ Previous Next ❯

No comments:

Post a Comment