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"/>
问题出在哪里..?
Title should make my problem well described.Here goes my code.
<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"/>
wheres the problem..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了获取[合并]元素节点的文本内容:
为了获取文本节点的文本内容:
In order to get [merged] text content of an element node:
In order to get text content of a text node:
您缺少第一个Child:(
我知道这听起来很奇怪,但这就是文本节点的工作方式)
You are missing a firstChild:
(I know it sounds weird but this is how text nodes work)
IE 7 不支持
节点。<text>
node is not supported in IE 7.