December 2001
Intermediate to advanced
380 pages
11h 54m
English
MSXML3.0 NodeList Object
The NodeList is
commonly returned by DOM methods that return a collection or list of
Nodes. The NodeList features some
special methods and properties to make working the list
easier.
item(
index )This method returns an item from the list at the given
index (zero-based, as Python
sequence indexes). If there is no node at
index, returns None.
nextNode( )This method returns the next node in the list, based on the internal iterator.
reset( )This method resets the internal iterator to zero.
lengthThis property indicates the number of items within the list.
Read now
Unlock full access