<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+" "+x.firstChild.nodeType+" "+x.firstChild.nodeValue"<br>");
document.write(x.lastChild.nodeName+" "+x.lastChild.nodeType+" "+x.lastChild.nodeValue"<br>");
</script>
</body>
+"<br>"
浏览器性能不同,firstChild包括了空白文本,现在普遍用的是firstElementChild和lastElementChild,这样是除了空白文本以外的内容,你可以试一试
求人不如求己,嘎嘎
haha,不用了,我少打了个加号