<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<div id="con">
<p>javascript</p>
<div>jQuery</div>
<h5>PHP</h5>
</div>
<script type="text/javascript">
var x=document.getElementById("con");
//document.write(x.firstChild.nodeName);
document.write(x.firstChild.nodeValue);
document.write(x.firstChild.nodeName);
document.write(x.childNodes[0].nodeName);
document.write(x.childNodes[0].nodeValue);
//document.write(x.lastChild.nodeName);
document.write(x.lastChild.nodeValue);
</script>
</body>
</html>
第一个子节点不是<p>javascript</p>吗?为什么
document.write(x.firstChild.nodeName)==#text;
document.write(x.firstChild.nodeValue)=="";