HTML DOM getElementsByTagName() 方法

Document 对象参考手册 Document 对象

返回带有指定标签名的对象的集合:

<p id="demo">单击按钮来改变这一段中的文本。</p>
<button onclick="myFunction()">点我</button>
<script>
  function myFunction() {
    document.getElementsByTagName("P")[0].innerHTML = "Hello World";
  };
</script>

尝试一下 »

定义和用法

getElementsByTagName() 方法可返回带有指定标签名的对象的集合。

提示: 参数值 "*" 返回文档的所有元素。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 getElementsByTagName() 方法


语法

document.getElementsByTagName(tagname)

参数

参数 类型 描述
tagname String 必须。你要获取元素的标签名。

返回值

类型 描述
NodeList 对象 指定标签名的元素集合

技术细节

DOM 版本 Core Level 1 Document Object

Document 对象参考手册 Document 对象