Returns the next node in the collection.
var objXMLDOMNode = oXMLDOMNodeList.nextNode();
An IXMLDOMNode
refers to the next node in the collection. Returns Null if there is no next node.
The following script example creates an IXMLDOMNodeList
object and uses its nextNode
method to iterate the collection.
var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.5.0"); var objNodeList; var objNode; xmlDoc.async = false; xmlDoc.load("books.xml"); if (xmlDoc.parseError.errorCode <> 0) { var myErr = xmlDoc.parseError; alert("You have error " + myErr.reason); } else { objNodeList = xmlDoc.getElementsByTagName("author"); for (var i=0; i<objNodeList.length; i++) { objNode = objNodeList.nextNode(); alert(objNode.text); } }
Set objXMLDOMNode = oXMLDOMNodeList.nextNode
An IXMLDOMNode
refers to the next node in the collection. Returns Null if there is no next node.
The following Microsoft® Visual Basic® example creates an IXMLDOMNodeList
object and uses its nextNode
method to iterate the collection.
Dim xmlDoc As New Msxml2.DOMDocument50 Dim objNodeList As IXMLDOMNodeList Dim objNode As IXMLDOMNode xmlDoc.async = False xmlDoc.Load ("books.xml") If (xmlDoc.parseError.errorCode <> 0) Then Dim myErr Set myErr = xmlDoc.parseError MsgBox("You have error " & myErr.reason) Else Set objNodeList = xmlDoc.getElementsByTagName("author") For i = 0 To (objNodeList.length - 1) Set objNode = objNodeList.nextNode MsgBox objNode.Text Next End If
HRESULT nextNode( IXMLDOMNode **nextItem);
nextItem
parameter is Null.The iterator initially points before the first node in the list so that the first call to the nextNode
method returns the first node in the list.
This method returns Null when the current node is the last node or there are no items in the list. When the current node is removed from the list, subsequent calls to nextNode
return Null. The iterator must be reset by calling the reset
method.
This member is an extension of the Worldwide Web Consortium (W3C) Document Object Model (DOM).
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button in the upper-left corner of the page.
Applies to: IXMLDOMNamedNodeMap | IXMLDOMNodeList | IXMLDOMSelection