如何在innerText 或nodeValue 之间进行选择?
当我需要更改 span 元素中的文本时,我应该使用哪一个以及有什么区别:
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnDetailDisplay.innerText=sDetail;
或
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnDetailDisplay.childNodes[0].nodeValue=sDetail;
When I need to change a text within a span element, which one should I use and what is the difference:
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnDetailDisplay.innerText=sDetail;
or
var spnDetailDisplay=document.getElementById('spnDetailDisplay');
spnDetailDisplay.childNodes[0].nodeValue=sDetail;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于具有文本内容的元素,它们是相同的。有关
nodeValue
的信息,请参阅这篇 MDC 文章。来自这篇文章:
For elements with text content, they're the same. See this MDC article for information on
nodeValue
.From this article:
和
的内容。然而,截至 2016 年 3 月,所有主要浏览器的版本都支持innerText。
一般来说,它们是相似的,但如果您需要最佳性能,则应使用nodeValue。
性能测试链接:https://jsperf.com /read-innerhtml-vs-innertext-vs-nodevalue-vs-textcontent/13
<script>
and<style>
.However in versions of all major browsers as of March of 2016 innerText is supported.
In general, they are similar, but if you need the best performance, nodeValue should be used.
Link for performance test: https://jsperf.com/read-innerhtml-vs-innertext-vs-nodevalue-vs-textcontent/13