我的计时器功能(完美起作用):
function Counter(initDate, id){
this.counterDate = new Date(initDate);
this.countainer = document.getElementById(id);
this.numOfDays = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
this.borrowed = 0, this.years = 0, this.months = 0, this.days = 0;
this.hours = 0, this.minutes = 0, this.seconds = 0;
this.updateNumOfDays();
this.updateCounter();
}
Counter.prototype.updateNumOfDays=function(){
var dateNow = new Date();
var currYear = dateNow.getFullYear();
if ( (currYear % 4 == 0 && currYear % 100 != 0 ) || currYear % 400 == 0 ) {
this.numOfDays[1] = 29;
}
var self = this;
setTimeout(function(){self.updateNumOfDays();}, (new Date((currYear+1), 1, 2) - dateNow));
}
Counter.prototype.datePartDiff=function(then, now, MAX){
var diff = now - then - this.borrowed;
this.borrowed = 0;
if ( diff > -1 ) return diff;
this.borrowed = 1;
return (MAX + diff);
}
Counter.prototype.calculate=function(){
var futureDate = this.counterDate > new Date()? this.counterDate : new Date();
var pastDate = this.counterDate == futureDate? new Date() : this.counterDate;
this.seconds = this.datePartDiff(pastDate.getSeconds(), futureDate.getSeconds(), 60);
this.minutes = this.datePartDiff(pastDate.getMinutes(), futureDate.getMinutes(), 60);
this.hours = this.datePartDiff(pastDate.getHours(), futureDate.getHours(), 24);
this.days = this.datePartDiff(pastDate.getDate(), futureDate.getDate(), this.numOfDays[futureDate.getMonth()]);
this.months = this.datePartDiff(pastDate.getMonth(), futureDate.getMonth(), 12);
this.years = this.datePartDiff(pastDate.getFullYear(), futureDate.getFullYear(), 0);
}
Counter.prototype.addLeadingZero=function(value){
return value < 10 ? ("0" + value) : value;
}
Counter.prototype.formatTime=function(){
this.seconds = this.addLeadingZero(this.seconds);
this.minutes = this.addLeadingZero(this.minutes);
this.hours = this.addLeadingZero(this.hours);
}
Counter.prototype.updateCounter=function(){
this.calculate();
this.formatTime();
this.countainer.innerHTML =
this.hours + ":" + this.minutes + ":" + this.seconds;
var self = this;
setTimeout(function(){self.updateCounter();}, 1000);
}
window.onload=function(){ new Counter(((new Date()).getTime()), 'timers'); }
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="timers"></div>
&#13;
我需要在X动作时停止该功能。例如,单击按钮时,计时器功能应停止执行。
我尝试了不同的方法,但没有一个适合我。