<!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 sc=document.getElementsByTagName("div")[0].childNodes;
for(var i=0;i<sc.length;i++)
{
document.write(sc[i].Name+"<br/>");
document.write(sc[i].Value+"<br/>");
document.write(sc[i].Type+"<br/>");
}
</script>
</body>
</html>
name value你都没有在标签里写啊?第三个是nodeType,不是type
document.write(sc[i].nodeName+"<br/>");
document.write(sc[i].nodeValue+"<br/>");
document.write(sc[i].nodeType+"<br/>");