x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>getElementsByTagName() 方法</h2>
<p>这是一个 p 元素</p>
<p>这也是一个 p 元素</p>
<p>这也是一个 p 元素。更改本文档中所有 p 元素的背景颜色:</p>
<script>
const collection = document.getElementsByTagName("P");
for (let i = 0; i < collection.length; i++) {
  collection[i].style.backgroundColor = "red";
}
</script>
</body>
</html>