目录

HTML HTMLCollection namedItem()

示例

获取id="myElement"的p元素的内容:

const collection = document.getElementsByTagName("p");
const element = collection.namedItem("myElement");
let text = element.innerHTML;
亲自试一试 »

这个简写产生相同的结果:

const collection = document.getElementsByTagName("p");
const element = collection["myElement"];
let text = element.innerHTML;
亲自试一试 »

描述

这个namedItem()方法返回一个命名元素HTML集合

这个namedItem()方法使用 id 或 name 属性来标识元素。


HTML集合

一个HTML集合是 HTML 元素的类似数组的集合(列表)。

集合中的元素可以通过索引(从 0 开始)访问。

长度属性返回集合中元素的数量。




语法

HTMLCollection.namedItem( name)
HTMLCollection[name]

参数

Parameter Description
name Required.
The value of the id attribute, or the name attribute, of the element.

返回值

Type Description
Element The element with the specified id or name.
null if the element does not exist.

浏览器支持

HTMLCollection.namedItem()所有浏览器都支持:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes