运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript setSeconds()</h2> <p>The setSeconds() method sets the seconds of a date object (0-59):</p> <p id="demo"></p> <script> const d = new Date(); d.setSeconds(30); document.getElementById("demo").innerHTML = d; </script> </body> </html>