运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Statements</h1> <h2>The if Statement</h2> <p>Display "Good day"if the hour is less than 20:00:</p> <p id="demo"></p> <script> let hour = new Date().getHours(); if (hour < 20) { document.getElementById("demo").innerHTML = "Good day"; } </script> </body> </html>