x
 
<!DOCTYPE html>
<html>
<body>
<p>单击按钮检查 id="myList" 的 ul 元素是否与文档的第一个 ul 元素相同。如果相同,则为其第一个子元素添加颜色。</p>
<button onclick="myFunction()">试一试</button>
<ul id="myList"><li>Coffee</li><li>Tea</li></ul>
<script>
function myFunction() {
  var item1 = document.getElementById("myList");
  var item2 = document.getElementsByTagName("UL")[0];
  
  if (item1 === item2) { 
    alert("它们是一样的!!");
  } else {
    alert("它们不一样。");
  }
}
</script>
</body>
</html>