HTMLCollection 长度
示例
文档中包含多少个段落
let number = document.getElementsByTagName("p").length;
自己试一试 »
遍历具有 class="myclass" 的元素并更改其字体大小
const collection = document.getElementsByClassName("myclass");
for (let i = 0; i < collection.length; i++) {
collection[i].style.fontSize = "24px";
}
自己试一试 »
描述
该 length
属性返回 HTMLCollection 中的元素数量。
该 length
属性是只读的。
该 length
属性在您想要遍历 HTMLCollection 时很有用。
HTMLCollection
一个 HTMLCollection 是一个类似于数组的 HTML 元素集合(列表)。
集合中的元素可以通过索引访问。索引从 0 开始。
语法
HTMLCollection.length
返回值
类型 | 描述 |
数字 | HTMLCollection 中的元素数量。 |
浏览器支持
HTMLCollection.length
在所有浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 是 |