我试图通过以下方式获取TextBox1的值:

  document.getElementById("TextBox1").innerText


但是由于某种原因它不起作用,我在Chrome和IE中尝试了它。当我做:

  document.getElementById("TextBox1").style.backgroundColor


我得到了值,因此由于某种原因,它仅对innerText不起作用。有没有其他方法可以获取文本框的价值?谢谢!

最佳答案

您需要访问其value属性:

 document.getElementById("TextBox1").value

关于javascript - 读取innerText失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22328821/

10-10 02:01