编程语言
首页 > 编程语言> > Javascript nodeValue返回null

Javascript nodeValue返回null

作者:互联网

标题应该让我的问题得到很好的描述.这是我的代码.

<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"/>

这个问题..?

解决方法:

为了获得元素节点的[合并]文本内容:

function vb(){
var textnode = document.getElementById("adiv").firstChild;
alert(textnode.textContent || textnode.innerText);
}

为了获取文本节点的文本内容:

function vb(){
alert(document.getElementById("adiv").firstChild.firstChild.nodeValue);
}

标签:javascript,null,nodevalue
来源: https://codeday.me/bug/20191006/1861281.html