有人可以解释document.getElementById("demo")
下面示例中该行的作用吗?
我知道 getElementById 获取了 demo 的 id,但 id 是此代码中<p id="demo"></p>
到底在做什么?<p id="demo"></p>
document.getElementById("age")
很清楚,因为它获得了作为输入的年龄的 id。
function myFunction() {
var age,voteable;
age = document.getElementById("age").value;
voteable = (age < 18)? "Too young" : "Old enough";
document.getElementById("demo").innerHTML = voteable;
}
<p>Click the button to check the age.</p>
Age:<input id="age" value="18" />
<p>Old enough to vote?</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>