概述<html><head><title>js
模拟时钟</title><meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body onLoad="setInterval(setTimeSpan,1000) <HTML> <head> <Title>Js摹拟时钟</Title> <Meta http-equiv="content-type" content="text/HTML; charset=UTF⑻"> </head><body onLoad="setInterval(setTimeSpan,1000);"> <span style="Font-size: 25px;" ID="timeSpan"></span></body><script type="text/JavaScript"> function setTimeSpan() { var date = new Date(); timeSpan.INNERHTML = date.format('现在是:yyyy年MM月dd日 hh:mm:ss'); } Date.prototype.format = function(format) { var o = { "M+" : this.getMonth() + 1,//month "d+" : this.getDate(),//day "h+" : this.getHours(),//hour "m+" : this.getMinutes(),//minute "s+" : this.getSeconds(),//second "q+" : Math.floor((this.getMonth() + 3) / 3),//quarter "S" : this.getMilliseconds() //millisecond } if (/(y+)/.test(format)) format = format.replace(RegExp.$1,(this.getFullYear() + "") .substr(4 - RegExp.$1.length)); for ( var k in o) if (new RegExp("(" + k + ")").test(format)) format = format.replace(RegExp.$1,RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)); return format; }</script></HTML>
查看演示:http://itmyhome.com/Js_imitate_clock/
作者:itmyhome
总结
以上是内存溢出为你收集整理的JS模拟时钟全部内容,希望文章能够帮你解决JS模拟时钟所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
评论列表(0条)