JavaScript
JavaScript switch 语句
x 的运行结果
源代码:
点击运行 »
<html> <head> <meta charset="utf-8"> </head> <body> <p>点击下面的按钮,会显示出基于今日日期的消息:</p> <button onclick="myFunction()">点击这里</button> <p id="demo"></p> <script> function myFunction() { var x; var d = new Date().getDay(); switch (d) { case 6: x = "今天是星期六"; break; case 0: x = "今天是星期日"; break; default: x = "期待周末"; } document.getElementById("demo").innerHTML = x; } </script> </body> </html>
运行结果:
点击运行 »