HTMLCollection 对象
HTMLCollection对象是类似于数组的HTML元素列表。像这样的方法返回一个
HTMLCollection。
HTMLCollection 对象属性和方法
可以在HTMLCollection对象上使用以下属性和方法:
属性
|
描述
|
|
返回HTMLCollection中指定索引处的元素
|
|
返回HTMLCollection中的元素数
|
|
返回HTMLCollection中具有指定ID或名称的元素
|
获取HTMLCollection:
-
var x = document.getElementsByTagName("P");
-
// 返回文档中所有P元素的集合
写下文档中元素的数量:
-
var x = document.getElementsByTagName("P");
-
document.write(x.length)
循环遍历HTMLCollection中的每个元素:
-
x = document.getElementsByTagName("*");
-
l = x.length;
-
for (i = 0; i < l; i++) {
-
document.write(x[i].tagName + "
");
-
}
阅读(5337) | 评论(0) | 转发(0) |