x
 
<!DOCTYPE html>
<html>
<head>
<style>
div {
  border: 1px solid black;
  margin: 5px;
}
</style>
</head>
<body>
<h1>HTMLCollection item() 方法</h1>
<p>使用 item() 方法获取 DIV 中的第一个 P 元素。</p>
<div id="myDIV">
  <p>First p element in div.</p>
  <p>Another p element in div.</p>
  <p>A third p element in div.</p>
</div>
<p>点击按钮获取 P 元素的内容:</p>
<button onclick="myFunction()">获取内容</button>
<p id="demo"></p>
<script>
function myFunction() {
  var div = document.getElementById("myDIV");
  var x = div.getElementsByTagName("P").item(0).innerHTML;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>