close
邏輯 if-else指令
1 if () {}
2 if () {} else {}
3 if () {} else if () {} else {}
<html>
<body>
<p id="demo">This is paragraph.</p>
<button type="button" onclick="myFunc()">
Push me!
</button>
<script>
function myFunc()
{
var x, y=4;
if(y==3)
{
x="A";
}
else if(y==4)
{
x="B";
}
else
{
x="C";
}
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>
執行結果為b
全站熱搜