标题应该让我的问题得到很好的描述。这就是我的代码。
<div id="adiv"><text>Some text</text></div>
<script type="text/javascript">
function vb(){
alert(document.getElementById("adiv").firstChild.nodeValue); //returns null
}
</script>
<input type="button" onclick="vb();" value="get"/>
问题是什么??
答案 0 :(得分:15)
为了获得元素节点的[合并]文本内容:
function vb(){
var textnode = document.getElementById("adiv").firstChild;
alert(textnode.textContent || textnode.innerText);
}
为了获取文本节点的文本内容:
function vb(){
alert(document.getElementById("adiv").firstChild.firstChild.nodeValue);
}
答案 1 :(得分:11)
您缺少firstChild:
alert(document.getElementById("adiv").firstChild.firstChild.nodeValue);
(我知道这听起来很奇怪,但这就是文本节点的工作原理)
答案 2 :(得分:-2)
<text>
节点。