通过 HTML DOM,能够使用节点关系在节点树中导航。
1.HTML DOM 节点列表
getElementsByTagName() 方法返回节点列表。节点列表是一个节点数组。
下面的代码选取文档中的所有 <p> 节点:
<body> <p>Hello World!</p>
<p>The DOM is very useful!</p>
<p>The DOM !</p>
<script>
x=document.getElementsByTagName("p");
document.write("The innerHTML of the second paragraph is: " + x[2].innerHTML);
</script> </body>