TheNodeList
interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.NodeList
objects in the DOM are live.
The items in theNodeList
are accessible via an integral index, starting from 0.
See also theDocument Object Model (DOM) Level 2 Core Specification.
getLength() The number of nodes in the list. | |
item(int index) Returns the index th item in the collection. |
publicNodeitem(int index)
index
th item in the collection. Ifindex
is greater than or equal to the number of nodes in the list, this returnsnull
.index
- Index into the collection.index
th position in theNodeList
, ornull
if that is not a valid index.public intgetLength()
length-1
inclusive.