W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <p>单击该按钮可显示 UTC 时间。</p> <button onclick="myFunction()">试一试</button> <p id="demo"></p> <script> function addZero(x,n) { while (x.toString().length < n) { x = "0" + x; } return x; } function myFunction() { var d = new Date(); var x = document.getElementById("demo"); var h = addZero(d.getUTCHours(), 2); var m = addZero(d.getUTCMinutes(), 2); var s = addZero(d.getUTCSeconds(), 2); var ms = addZero(d.getUTCMilliseconds(), 3); x.innerHTML = h + ":" + m + ":" + s + ":" + ms; } </script> </body> </html>