public interface DOMImplementationList
DOMImplementationList接口提供了一个有序的DOM实现集合的抽象,而不定义或限制如何实现这个集合。 DOMImplementationList中的项目可以通过整数索引访问,从0开始。
- 自:
- 1.5,DOM Level 3
-
Method Summary
-
Method Details
-
item
返回集合中的第index项。如果index大于或等于列表中的DOMImplementation数量,则返回null。- 参数:
-
index- 集合中的索引。 - 返回:
-
DOMImplementationList中第index个位置的DOMImplementation,如果这不是一个有效的索引,则返回null。
-
getLength
int getLength()列表中的DOMImplementation数量。有效子节点索引的范围是从0到length-1。
-