NodeList: item() 方法

通过索引从 NodeList 返回一个节点。只要提供参数,此方法就不会抛出异常。如果索引超出范围,将返回 null 值,如果未提供参数,将抛出 TypeError

语法

js
item(index)

JavaScript 还提供了类似数组的方括号语法,用于通过索引从 NodeList 获取项

js
nodeItem = nodeList[index];

参数

  • index 是要获取的节点的索引。索引从零开始。

返回值

item 方法返回的 nodeList 中的第 index 个节点。

异常

TypeError

如果未提供参数,则抛出。

示例

js
const tables = document.getElementsByTagName("table");
const firstTable = tables.item(1); // or tables[1] - returns the second table in the DOM

规范

规范
DOM 标准
# ref-for-dom-nodelist-item①

浏览器兼容性

BCD 表格仅在浏览器中加载