码迷,mamicode.com
首页 > 其他好文 > 详细

倒计时

时间:2018-11-20 13:29:49      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:on()   div   type   inter   down   tar   function   count   prototype   

function Countdown(seconds) {
this._seconds = seconds;
}
Countdown.prototype._step = function() {
console.log(this._seconds);
if (this._seconds > 0) {
this._seconds -= 1;
} else {
clearInterval(this._timer);
}
};
Countdown.prototype.start = function() {
var _this=this;
_this._step();
_this._timer = setInterval(function() {
_this._step();
}, 1000);
};

new Countdown(10).start();

倒计时

标签:on()   div   type   inter   down   tar   function   count   prototype   

原文地址:https://www.cnblogs.com/xzma/p/9988167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!