Javascript 计算器:@H_301_1@
Javascript计算器 -> 添加时间在屏显区左上角添加时间显示@H_301_1@
初始化@H_301_1@
显示时间日期
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);
};
时间格式化@H_301_1@