我有這個簡單的倒數計時器 -jQuery的暫停/恢復定時器觸發
$(document).ready(function() {
var Clock = {
totalSeconds: 800,
start: function() {
var self = this;
this.interval = setInterval(function() {
self.totalSeconds -= 1;
$("#hour").text(Math.floor(self.totalSeconds/3600));
$("#min").text(Math.floor(self.totalSeconds/60 % 60));
$("#sec").text(parseInt(self.totalSeconds % 60));
}, 1000);
},
pause: function() {
clearInterval(this.interval);
delete this.interval;
},
resume: function() {
if (!this.interval) this.start();
}
};
Clock.start();
$('#pauseButton').click(function() { Clock.pause(); });
$('#resumeButton').click(function() { Clock.resume(); });
});
我真的只想要一個暫停/恢復按鈕,一件事
如何打開
$('#pauseButton').click(function() { Clock.pause(); });
所以它切換暫停/恢復命令
編輯....
我如何獲得一個CMS(PHP)來決定totalSeconds是什麼?正如你可以看到它目前將在一個.js文件中,所以我想我需要在html/php頁面的底部添加totalSeconds,並通過cms輸入進行編輯/修改?