我正在开发一个用 Javascript 编写的倒数计时器。真的很基本。仅setInterval
用于计时方面。我使用存储函数和变量的原型方法编写它,这样我就可以创建一个“类”。
我以这种方式调用代码。
function testTimer() {
var newTimer = new CDTimer($("#voteTimer"),30,"");
newTimer.start();
}
当下面的代码运行时,console.log
正在打印undefined
或NaN
.
function CDTimer (target, duration, callback) {
this.target = target;
this.duration = duration;
this.callback = callback;
}
CDTimer.prototype.start = function() {
this.start = new Date().getTime();
this.interval = setInterval(this.update, 1000);
}
CDTimer.prototype.update = function() {
console.log(this.duration, this.start);
this.elapsed = this.duration - (new Date().getTime() - this.start) / 1000
if (this.elapsed < 0) {
clearInterval(this.interval);
this.callback();
}
else {
console.log(this.elapsed);
$(this.target).text(this.elapsed);
}
}
CDTimer.prototype.stop = function() {
clearInterval(this.interval);
}
我一定错过了一些愚蠢的事情。我的变量及其值发生了什么变化?
感谢您的洞察力。