public interface DOMImplementationList
DOMImplementationList 接口提供了 DOM 实现的有序集合的抽象,没有定义或约束这个集合是如何实现的。 DOMImplementationList 中的项目可通过从 0 开始的整数索引访问。
- 自从:
- 1.5,DOM 级别 3
-
方法总结
-
方法详情
-
item
返回集合中的第index个项目。如果index大于或等于列表中DOMImplementation的数量,则返回null。- 参数:
index- 集合索引。- 返回:
DOMImplementation在DOMImplementationList中的index位置,如果不是有效索引,则为null。
-
getLength
int getLength()列表中DOMImplementation的数量。有效子节点索引的范围是 0 到length-1(含)。
-