运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<html> <body> <p>Click the button to display a message based on what day it is.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var text; switch (new Date().getDay()) { case 1: case 2: case 3: default: text = "Looking forward to the Weekend"; break; case 4: case 5: text = "Soon it is Weekend"; break; case 0: case 6: text = "It is Weekend"; } document.getElementById("demo").innerHTML = text; } </script> </body> </html>