xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>DOM HTMLCollection getElementsByTagName()示例 - 基础教程(div.cn)</title>
<body>
<h1>The HTMLCollection 对象</h1>
<p>使用getElementsByTagName()方法返回HTMLCollection:</p>
<script>
var x = document.getElementsByTagName("p");
document.write(x);
</script>
</body>
</html>