<html>
<body>
<h1>Document 对象</h1>
<h2>getElementsByTagName() 方法</h2>
<p>无序列表:</p>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<p>第二个 li 元素的 innerHTML 是:</p>
<p id="demo"></p>
<script>
const collection = document.getElementsByTagName("li");
document.getElementById("demo").innerHTML = collection[1].innerHTML;
</script>
</body>
</html>