当前位置:K88软件开发文章中心编程全书编程全书03 → 文章内容

DOM HTMLCollection

减小字体 增大字体 作者:佚名  来源:网上搜集  发布时间:2019-1-14 5:03:43

DOM HTMLCollectionHTMLCollection 是 HTML 元素的集合。HTMLCollection 对象类似一个包含 HTML 元素的数组列表。getElementsByTagName() 方法返回的就是一个 HTMLCollection 对象。属性和方法下表列出了 HTMLCollection 对象中的属性和方法:属性 / 方法描述item()返回 HTMLCollection 中指定索引的元素。length返回 HTMLCollection 中元素的数量。namedItem()返回 HTMLCollection 中指定 ID 或 name 属性的元素。实例返回所有 p 元素的集合,该集合是一个 HTMLCollection 对象:实例var x = document.getElementsByTagName("p");尝试一下 ?计算文档中 p 元素的数量:实例var x = document.getElementsByTagName("P");document.write(x.length);尝试一下 ?循环输出 HTMLCollection 对象中的所有元素:实例var x = document.getElementsByTagName("P");document.write(x.length);尝试一下 ?

DOM HTMLCollection