Javascript 计算器:
系列文章:
Javascript计算器 -> 添加时间在屏显区左上角添加时间显示
效果图如下:
代码
初始化
// 计算器初始化 Calculator.prototype.init = function () { this.addTdClick(); // 时间显示 this.showDate(); };
时间显示
// 在屏显区左上角显示时间日期 Calculator.prototype.showDate = function () { $("result-date").innerText = new Date().format("hh:mm:ss EEE yyyy-MM-dd"); var that = this; if (this.timer) clearTimeout(this.timer); this.timer = setTimeout(function(){ that.showDate(); }, 1000); };
时间格式化
Date.prototype.format = function (dateStr){}
通过定时器每隔一秒获取时间去显示
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
您可能感兴趣的文章:
相关文章
最新评论
站长推荐 正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248] 站长推荐 Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]
大家感兴趣的内容
最近更新的内容
常用在线小工具