x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>getElementsByTagName() 方法</h2>
<p>无序列表:</p>
<ul>
  <li>咖啡</li>
  <li></li>
  <li>牛奶</li>
</ul>
<p>本文档中的 li 元素数量为:</p>
<p id="demo"></p>
<script>
const collection = document.getElementsByTagName("li");
document.getElementById("demo").innerHTML = collection.length;
</script>
</body>
</html>