StackOverflow 文档 DOM 教程 检索元素 按 ID 按 ID Created: November-22, 2018 document.getElementById('uniqueID') 将检索 <div id="uniqueID"></div> 只要存在具有给定 ID 的元素,document.getElementById 将仅返回该元素。否则,它将返回 null。 注意: ID 必须是唯一的。多个元素不能具有相同的 ID。 按标签名称检索元素