求大神指点迷津
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<div>
javascript
<p>javascript</p>
<div>jQuery</div>
<h5>PHP</h5>
</div>
<script type="text/javascript">
var a=document.getElementsByTagName("div")[0].childNodes;
for(i=0;i<a.length;i++){
document.write("第"+(i+1)+"个节点属性:"+a[i].nodeName+" "+a[i].nodeValue+" "+a[i].nodeType+"<br>")}
</script>
</body>
</html>
为什么这里 var a=document.getElementsByTagName("div")[0].childNodes要用[0].childNodes