菜鸟教程 tryjs_comparison 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <p>点击按钮检测年龄。</p>
年龄:<input id="age" value="18">
<p>是否达到投票年龄?</p>
<button onclick="myFunction()">点击按钮</button>
<p id="demo"></p>
<script>
function myFunction()
{
	var age,voteable;
	age=document.getElementById("age").value;
	voteable=(age<18)?"年龄太小":"年龄已达到";
	document.getElementById("demo").innerHTML=voteable;
}
</script>