我正在尝试倒计时器。我设法做了一个,但问题是它关闭浏览器时停止。因此,当用户重新访问我的网站时,它会重新启动。我想要的是保留那个计时器。 例如,如果用户在计时器22:14:09离开我的网站。所以计时器将继续。让我们说用户在一小时后重新访问我的网站,所以时间应该是21:14:09。我该怎么做?
这是我的JS
$(function () {
var hrs, mins, secs, TimerRunning, TimerID,
Timer = {
init: function () {
hrs = 23;
mins = 59;
secs = 59;
TimerRunning = false;
Timer.StopTimer();
Timer.StartTimer();
},
StopTimer: function () {
if(TimerRunning)
clearTimeout(TimerID);
TimerRunning=false;
},
StartTimer: function () {
TimerRunning = true;
$('.timer').html(Timer.Pad(hrs) + ":" + Timer.Pad(mins) + ":" + Timer.Pad(secs));
TimerID = self.setInterval("StartTimer()", 1000);
if(hrs == 0 && mins == 0 && secs == 0)
StopTimer();
if (secs == 0) {
mins--;
secs = 59;
}
if (mins == 0) {
hrs--;
mins = 59;
}
secs--;
setTimeout(function () { Timer.StartTimer(); }, 1000);
},
Pad: function (number) {
if(number < 10)
number = 0+""+number;
return number;
}
};
Timer.init();
});
更新
答案 0 :(得分:1)
以下是我解决此问题的方法。
// use hours, minutes & seconds to set time limit
var hours = 1,
minutes = 30,
seconds = 0,
maxTime = ( ( hours * 3600 ) + ( minutes * 60 ) + seconds ) * 1000,
// if timeleft not in localStorage then default to maxTime
timeLeft = ( localStorage.timeLeft || maxTime ),
startTime = new Date(),
intervalRef;
// check if user has already used up time
if( timeLeft > 0 ) {
intervalRef = setInterval( setTimeLeft, 5000 );
} else {
stopTrackingTime();
}
function setTimeLeft( ) {
// if user has used up time exit
if( localStorage.timeLeft < 0 ) {
stopTrackingTime();
}
// calculate how long user has left
var elapsed = ( new Date() - startTime );
localStorage.timeLeft = timeLeft - elapsed;
};
// function called once user has used up time
function stopTrackingTime( ) {
clearInterval( intervalRef );
alert( "end of time allowed" );
}
小提琴here
答案 1 :(得分:0)
您可以将时间存储在LocalStorage
中,并且在浏览器重新启动时会保持不变。
在你的情况下,像
这样简单localStorage["mytimer"] = JSON.stringify([hrs, mins, secs]);
应该用于存储,你可以做
var previousTime = JSON.parse(localStorage["mytimer"]);
检索以前的值。
您可以在此处详细了解:http://diveintohtml5.info/storage.html。
答案 2 :(得分:0)
您可以修改StartTimer函数,以便每次调用本地时间戳(new Date
)时都保存在cookie或localStorage中。此外,setTimeout不是很可靠,你应该不时地用实时调整时间计数。