JS实现HTML页面中动态显示当前时间完整示例
程序员文章站
2022-04-10 11:09:23
本文实例讲述了js实现html页面中动态显示当前时间。分享给大家供大家参考,具体如下:
...
本文实例讲述了js实现html页面中动态显示当前时间。分享给大家供大家参考,具体如下:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>www.jb51.net js动态显示时间</title> <script> var timer=null; function displayclock(num){//num是传入的startclock中的动态值 if(num<10){ return "0"+num; } else{ return num; } } //停止计时 function stopclock(){ cleartimeout(timer); } //开始计时 function startclock(){ var time =new date(); var hours=displayclock(time.gethours())+":"; var minutes=displayclock(time.getminutes())+":"; var seconds=displayclock(time.getseconds()); //显示时间 show.innerhtml=hours+minutes+seconds;//在id为show的块区域显示 timer=settimeout("startclock()",1000);//延时器 } </script> </head> <style> #show{ font-size: 24px; color:#4213c9; text-align:center; } </style> <body onload="startclock()" onunload="stopclock()"> <div id="show"></div> </body> </html>
使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun,测试运行效果如下:
ps:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器:
在线日期计算器/相差天数计算器:
在线日期天数差计算器:
unix时间戳(timestamp)转换工具:
更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript时间与日期操作技巧总结》、《javascript查找算法技巧总结》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结》
希望本文所述对大家javascript程序设计有所帮助。