![]() |
Using the XMLDOMNodeList Object
The XMLDOMNodeList Gathering Information About the Node ListYou can get the length of the node list from the length for (i = 0;i < elem1.childNodes.length;i++){ if (elem1.childNodes.item(i).text == "hello world") helloWorldIndex = i; } Navigating the Node ListYou can get at a specific member of the node list with
the item The following code sample performs the same task as the previous code sample. currentNode = elem1.childNodes.nextNode; while (currentNode != null) { if (currentNode.text == "hello world") helloWorldNode = currentNode; currentNode = elem1.childNodes.nextNode; } Notice that the currentNode is set using the node returned by elem1.childNodes.nextNode. The initial position of the node list is defined to be before the first node. Therefore, the first time nextNode is called on the node list, the first node is returned. Also notice that the code tests for currentNode != null. If the current node is the last node in the list or the node list has no members, nextNode returns null.
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |