![]() |
Using the XMLDOMNode Object
The XMLDOMNode
Gathering Information About the NodeThe following properties allow you to get information concerning the node: You can access these properties to get information concerning the type of the node, the name of the node, whether the node has any children, whether the node is explicitly specified in the XML file or implied within the Document Type Definition (DTD) or XML Schema, the namespace to which the node belongs, whether the node has been parsed, and the string representation of the node. The following sample code tests to see if the node is of type "element." If the node is of type "element," the string representation of the node is loaded into a document object through the loadXML method. if (xmlNode.nodeTypeString == "element") XMLDoc.loadXML(xmlNode.xml) Getting and Setting the Data Within a NodeThe data marked up within the XML file is exposed in the DOM
as node values. These values might be the value of an attribute,
for instance, or the text within an XML element. There are three
ways to access the value of a node. The nodeValue newAttNode = XMLDoc.createAttribute("newAtt") newAttNode.nodeValue = "hello world" There are three ways to access text within an element node. You can:
Navigating the TreeFrom the XMLDOMNode object, you can navigate directly to its
parent node (parentNode), if (elem1.hasChildNodes == true && elem1.firstChild.nodeTypeString == "element") elem1.firstChild.text = "I'm the first child of elem1" It is also possible to navigate to other nodes in the tree
using selectNodes Manipulating the Children of a NodeThe XMLDOMNode object exposes four methods that allow you
to manipulate the children of a node: appendChild, newChild = XMLDoc.createElement("last_child") elem1.appendChild(newChild) The appendChild method always adds the node to the end of the list of children. To insert the node somewhere else within the child node list, use the insertBefore method. This method takes two parameters, the node to be inserted and the node before which the new child is to be inserted. The following VBScript example loads Books.xml (see Accessing the Document Tree) and creates a new element, PAGES. Then, using a reference to the first child of a node as the reference point (refElem), it inserts the new element with the insertBefore method: Dim xmlDoc Dim root Dim newElem Dim refElem Set xmlDoc = CreateObject("microsoft.xmldom") xmlDoc.async = False xmlDoc.load("c:\xmlinact\books.xml") Set root = xmlDoc.documentElement Set newElem = xmlDoc.createElement("PAGES") Set refElem = root.childNodes.item(1).firstChild root.childNodes.item(1).insertBefore newElem, refElem MsgBox root.childNodes.item(1).xml The next example uses the removeChild method to remove a child node: Dim xmlDoc Dim root Dim oldChild Set xmlDoc = CreateObject("microsoft.xmldom") xmlDoc.async = False xmlDoc.load("c:\books.xml") Set root = xmlDoc.documentElement Set oldChild = root.childNodes.item(1).firstChild root.childNodes.item(1).removeChild oldChild MsgBox root.childNodes.item(1).xml Transforming a NodeThe transformNode
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |