Javascript 计算器:
系列文章:
Javascript计算器 -> 添加时间在屏显区左上角添加时间显示
效果图如下:
初始化
时间显示
显示时间日期
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);
};
时间格式化
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/js/42765.html