JS 动态显示时间

Posted 圆白菜的菜园子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 动态显示时间相关的知识,希望对你有一定的参考价值。

js

Date.prototype.format = function (fmt)
var o =
"y+": this.getFullYear, //年
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds() //秒
;
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;

setInterval("if(document.getElementById(\'dateTime\'))document.getElementById(\'dateTime\').innerHTML = (new Date()).format(\'yyyy-MM-dd hh:mm:ss\');", 1000);//动态显示时间

 

html

<html><lable id="dateTime"></lable></html>

以上是关于JS 动态显示时间的主要内容,如果未能解决你的问题,请参考以下文章

js实现动态显示时间

JS 动态显示时间

JS显示动态的系统时间--JavaScript基础

vis.js 动态显示边缘

js设置DIV显示时间并动态显示时间倒计时多少秒,倒计时完了之后该层自动隐藏。

列表未在 vue.js 中动态显示