為什么只有第一個文本節點顯示了javascript
沒太懂
<!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?x=document.getElementsByTagName("div")[0].childNodes;
?for(var?i=0;i<x.length;i++){
?????document.write("節點類型:"+x[i].nodeName+" "+x[i].nodeType+" "+x[i].nodeValue+"<br?/>");
?}
?
</script>
</body>
</html>
2015-04-13
http://www.xianlaiwan.cn/code/1589? ?看一下這節中的講解?元素節點的 nodeValue 是?undefined 或 null