我想使用JavaScript获取<p/>
元素的值,但我却得到undefined
:
HTML:
<p id="bool_"> _test_</p>
JavaScript:
var x = document.getElementById("bool_").value;
alert(x); // Alerts 'undefined'
答案 0 :(得分:2)
尝试使用HTML元素的innerText
属性。
const x = document.getElementById("bool_").innerText;
alert(x);
答案 1 :(得分:1)
您正在寻找的是
var x =document.getElementById("bool_").innerHTML;