HTMLCollection:length 属性

HTMLCollection.length 属性返回 HTMLCollection 中的项目数量。

一个表示 HTMLCollection 中项目数量的整数。

示例

length 属性在 DOM 编程中经常用到。它通常用于测试列表的长度,看看它是否存在。它也常用于 for 循环中的迭代器,如以下示例。

js
// All the elements with the class ".test" in the document
const items = document.getElementsByClassName("test");

// For each test item in the list,
// append the entire element as a string of HTML
let gross = "";
for (let i = 0; i < items.length; i++) {
  gross += items[i].innerHTML;
}

// gross is now all the HTML for the test elements

规范

规范
DOM 标准
# ref-for-dom-htmlcollection-length①

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。