<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<script type="text/javascript">
window.onload=function(){
var a=document.getElementsByTagName('div');
alert(a[0].nodeValue);//这里为什么弹出的事null啊?它不是获取文本内容吗
}
</script>
</head>
<body>
<div>aaa</div>
</body>
</html>
alert(a[0].nodeValue);
改成
alert(a[0].childNodes[0].nodeValue);
只有文本节点的
nodeValue
才有值,a[0]
是一个DIV节点
,它的子节点才是一个文本节点