我想阅读html span的值。
我该怎么做?
这是代码:
//this works
spanRight= document.getElementsByClassName("spanRight")
//but i cant get the text
spanRight = spanRight.text;
<span class="spanRight">1234567890</span>
感谢您的帮助
最佳答案
您将使用innerText
。
spanRight = spanRight.innerText;
还有
innerHTML
可以返回HTML标记。 Differences are listed here。