JavaTM 2 Platform
Standard Ed. 6

org.w3c.dom
接口 NodeList

所有已知实现类:
IIOMetadataNode

public interface NodeList

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

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

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


方法摘要
 int getLength()
          列表中的节点数。
 Node item(int index)
          返回集合中的第 index 个项。
 

方法详细信息

item

Node item(int index)
返回集合中的第 index 个项。如果 index 大于或等于此列表中的节点数,则返回 null

参数:
index - 集合中的索引。
返回:
返回该 NodeListindex 位置处的节点;如果索引是无效索引,则返回 null

getLength

int getLength()
列表中的节点数。有效子节点索引的范围是 0 到 length-1(包含此值)。


JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only