gpt4 book ai didi

Javascript nodeValue 返回 null

转载 作者:可可西里 更新时间:2023-11-01 02:53:01 25 4
gpt4 key购买 nike

标题应该很好地描述了我的问题。这是我的代码。

<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 nodeValue 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3977636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com