📅  最后修改于: 2020-11-10 05:11:39             🧑  作者: Mango
NodeList对象指定节点的有序集合的抽象。可通过从0开始的整数索引访问NodeList中的项目。
下表列出了NodeList对象的属性-
Attribute | Type | Description |
---|---|---|
length | unsigned long | It gives the number of nodes in the node list. |
以下是NodeList对象的唯一方法。
S.No. | Method & Description |
---|---|
1 |
item()
It returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null. |