我在javascript中有简单的stopwatch,我的问题是如果有可能以某种方式在其中实现cookie,所以如果我关闭浏览器然后重新打开它(或者至少用秒表关闭标签,不确定如果有差异),计时器仍将运行。
答案 0 :(得分:1)
以下是使用带秒表的Cookie的示例:
https://jsfiddle.net/tmonster/00eobuxy/
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
Number.prototype.pad = function() {
return ("0" + String(this)).substr(-2);
}
var startTime = new Date();
var isRunning = false;
function tick() {
if (!isRunning) return;
var t = new Date(new Date() - startTime);
document.getElementById("stopwatch").innerHTML = t.getUTCHours().pad() + ":" + t.getMinutes().pad() + ":" + t.getSeconds().pad();
setTimeout(tick, 1000);
}
function CheckIfClockedIn() {
var ct = getCookie("ClockInTime");
if (ct.length == 0) return;
isRunning = true;
startTime = new Date(ct);
tick();
document.getElementById("punchInOut").innerHTML = "Clock out";
}
function PunchInOut() {
if (!isRunning) {
isRunning = true;
startTime = new Date();
tick();
setCookie("ClockInTime", startTime, 1);
document.getElementById("punchInOut").innerHTML = "Clock out";
} else {
isRunning = false;
setCookie("ClockInTime", "", 0);
document.getElementById("stopwatch").innerHTML = "Not clocked in";
document.getElementById("punchInOut").innerHTML = "Clock in";
}
}
答案 1 :(得分:0)
如果您在Cookie中存储开始时间(如秒表启动时的实际时间值),那么只要您从该浏览器打开页面,就可以从Cookie中读取开始时间,获取当前时间,计算经过时间并显示已用时间。
然后你可以从那里算出时间。
似乎计时器一直在运行。
这样做的一个很好的功能是,当标签关闭时,您不必存储任何内容(这有时会出现问题)。相反,您只需在秒表启动时存储cookie。