<html>
<body>
<h1>Document 对象</h1>
<h2>querySelectorAll() 方法</h2>
<p>给第一个 class="example" 的 p 元素添加背景颜色:</p>
<h2 class="example">标题</h2>
<p class="example">一个段落。</p>
<p class="example">一个段落。</p>
<script>
const nodeList = document.querySelectorAll("p.example");
nodeList[0].style.backgroundColor = "red";
</script>
</body>
</html>