我遇到停止setInterval
计时器的问题。我知道它应该在使用claeerInterval
之后停止,但在我的情况下出错了。
这是我所拥有的代码的一部分:
function startTimer(duration, display) {
var timer = duration, minutes, seconds;
var tmr = setInterval(function () {
minutes = parseInt(timer / 60, 10)
seconds = parseInt(timer % 60, 10);
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;
display.textContent = minutes + ":" + seconds;
if (--timer < 0) {
timer = duration;
}
}, 1000);
}
function beginTimer() {
var fiveMinutes = 60 * 5,
display = document.querySelector('#time');
startTimer(fiveMinutes, display);
}
function gameOver() {
// some more code
clearInterval(tmr); // there throws an error
}
之后我收到了一个错误:
未捕获的ReferenceError:未定义tmr
你有什么想法吗?我应该把它公之于众吗?