时钟操作js---显示时间点
Posted 小白咚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时钟操作js---显示时间点相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body onload="startTime()"> <div id="timetxt"></div> <script> function startTime(){ var today = new Date(); var h = today.getHours(); var m = today.getMinutes(); var s = today.getSeconds(); m = checkTime(m); s = checkTime(s); document.getElementById("timetxt").innerHTML = h + ":" + m + ":" + s; t = setTimeout(function(){ startTime(); },1000); } function checkTime(i){ if(i<10){ i = "0"+i; } return i; } </script> </body> </html>
以上是关于时钟操作js---显示时间点的主要内容,如果未能解决你的问题,请参考以下文章