Most visited

Recently visited

Added in API level 1

NodeList

public interface NodeList

org.w3c.dom.NodeList


NodeList接口提供了一个有序的节点集合的抽象,而没有定义或约束如何实现这个集合。 NodeList DOM中的对象是活的。

NodeList中的项目可通过从0开始的整数索引访问。

另请参阅 Document Object Model (DOM) Level 3 Core Specification

Summary

Public methods

abstract int getLength()

列表中的节点数量。

abstract Node item(int index)

返回 indexindex个项目。

Public methods

getLength

Added in API level 1
int getLength ()

列表中的节点数量。 有效子节点索引的范围是0到length-1含)。

Returns
int

item

Added in API level 1
Node item (int index)

返回indexindex个项目。 如果index大于或等于列表中的节点数,则返回null

Parameters
index int: Index into the collection.
Returns
Node The node at the indexth position in the NodeList, or null if that is not a valid index.

Hooray!