获取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 元素的类似数组的集合(列表)。
集合中的元素可以通过索引(从 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 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!