实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p>输入你的年龄并点击按钮:</p>
6
7
<input id="age" value="18" />
8
9
<button onclick="myFunction()">点我</button>
10
11
<p id="demo"></p>
12
13
<script>
14
function myFunction() {
15
    var age,voteable;
16
    age = document.getElementById("age").value;
17
    voteable = (age < 18) ? "Too young":"Old enough";
18
    document.getElementById("demo").innerHTML = voteable + " to vote.";
19
}
20
</script>
21
22
</body>
23
</html>
24