JavaScript 参考手册
JavaScript getHours() 方法
显示当前时间 - 如何使用 getHours(), getMinutes() 以及 getSeconds() 来显示当前的时间。
源代码:
点击运行 »
<p id="demo">单击按钮显示此时的时间:</p> <button onclick="myFunction()">点我</button> <script> function addZero(i) { if (i < 10) { i = "0" + i; } return i; } function myFunction() { var d = new Date(); var x = document.getElementById("demo"); var h = addZero(d.getHours()); var m = addZero(d.getMinutes()); var s = addZero(d.getSeconds()); x.innerHTML = h + ":" + m + ":" + s; } </script>
运行结果:
点击运行 »