Javascript 計算機:
系列文章:
JS 實作計算器詳解及實例程式碼(一)
Javascript 實作計算器時間功能詳解及實例(二)
Javascript計算器-> 新增時間在螢幕顯區左上角加入時間顯示
效果圖如下:
rr
初始化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); };
通過定時器每隔一秒獲取時間去顯示
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多Javascript 實作計算器時間功能詳解及實例(二)相關文章請關注PHP中文網!