<html>
<body>
<h1>HTMLCollection item() 方法</h1>
<p>item() 方法返回指定索引处的元素。</p>
<p>点击按钮返回本页第一个 P 元素的内容:</p>
<button onclick="myFunction()">输出 P 元素的 innerHTML</button>
<script>
function myFunction() {
var x = document.getElementsByTagName("P");
alert(x.item(0).innerHTML);
}
</script>
</body>
</html>