运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Dates</h1> <h2>The getDate() Method</h2> <p>getDate() returns the day of the month (from 1 to 31) of a date:</p> <p id="demo"></p> <script> const d = new Date(); let day = d.getDate(); document.getElementById("demo").innerHTML = day; </script> </body> </html>