欢迎访问服务器技术网-www.fuwuqijishu.com

HTMLCollection length 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 171次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTMLCollection length 属性

DOM HTMLCollection


定义和用法

length 属性返回 HTMLCollection 对象中元素的数量。

该属性是只读的。

该属性在循环 HTMLCollection 对象时很有用。

语法

HTMLCollection.length

返回值

返回一个数字,表示 HTMLCollection 对象中元素的数量。


浏览器支持

属性
length Yes Yes Yes Yes Yes

实例

实例

循环输出所有 class=”myclass 的元素并修改它们的背景颜色:

var x = document.getElementsByClassName("myclass");

for (i = 0; i < x.length; i++) {
x.item(i).style.backgroundColor = "red";
}


相关文章

HTMLCollection: item() 方法

HTML Element: getElementsByClassName() 方法

HTML Element: getElementsByTagName() 方法


DOM HTMLCollection

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2302.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900