This is especially usef " /> 精品国产免费观看一区,午夜视频免费观看,欧美一二三区在线

一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

Prototype PeriodicalExecuter對(duì)象 學(xué)習(xí)

This is a simple facility for periodical execution of a function. This essentially encapsulates the native clearInterval/setInterval mechanism found in native Window objects.

This is especially useful if you use one to interact with the user at given intervals (e.g. use a prompt or confirm call): this will avoid multiple message boxes all waiting to be actioned.


這個(gè)對(duì)象就是可以周期性的執(zhí)行某個(gè)方法,但是在它內(nèi)部維持了一個(gè)狀態(tài),可以防止由于某些原因一次調(diào)用沒執(zhí)行,然后下一次調(diào)用又來了,這樣會(huì)造成連續(xù)執(zhí)行兩次方法。上面的第二斷英文就是這個(gè)意思。

幫助文檔上說這個(gè)對(duì)象只提供了一個(gè)方法stop,但是在我看的源碼里還提供了一個(gè)事件onTimerEvent,應(yīng)該可以在某個(gè)時(shí)候觸發(fā)這個(gè)事件。但幫助文檔上沒有給出示例。

這個(gè)對(duì)象源碼比較簡(jiǎn)單,這里直接貼出來了,就不再注釋了:
復(fù)制代碼 代碼如下:
var PeriodicalExecuter = Class.create({
initialize: function(callback, frequency) {
this.callback = callback;
this.frequency = frequency;
this.currentlyExecuting = false;

this.registerCallback();
},

registerCallback: function() {
this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
},

execute: function() {
this.callback(this);
},

stop: function() {
if (!this.timer) return;
clearInterval(this.timer);
this.timer = null;
},

onTimerEvent: function() {
if (!this.currentlyExecuting) {
try {
this.currentlyExecuting = true;
this.execute();
} catch(e) {
/* empty catch for clients that don't support try/finally */
}
finally {
this.currentlyExecuting = false;
}
}
}
});

看一下示例:
復(fù)制代碼 代碼如下:
new PeriodicalExecuter(function(pe) {
if (!confirm('Want me to annoy you again later?'))
pe.stop(); },
5);
// Note that there won't be a stack of such messages if the user takes too long
// answering to the question...

JavaScript技術(shù)Prototype PeriodicalExecuter對(duì)象 學(xué)習(xí),轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 欧美特黄三级在线观看 | 最近2018中文字幕免费视频 | 在线久| 欧美性20hd另类 | 久久91精品国产91久久跳舞 | 午夜黄色福利视频 | 亚洲一区二区三区在线网站 | fefe66毛片免费看 | 日本理论午夜中文字幕第一页 | 9l国产精品久久久久麻豆 | 无码一区二区三区视频 | 九九热免费在线观看 | 亚洲成人tv | 免费黄色美女网站 | 激情亚洲 | 色综合久久88色综合天天提莫 | 成人精品一区二区激情 | 久久中文字幕视频 | 亚洲国产精品线在线观看 | 国产精品美女网站在线看 | 精品国精品国产自在久国产不卡 | 亚洲六月丁香婷婷综合 | 久久国产乱子伦精品免费一 | 激情综合激情五月 | 亚洲一区亚洲二区亚洲三区 | 另类图片综合网 | 91免费精品视频 | 欧美首页| 国产精品好好热在线观看 | 久久国内精品自在自线400部o | 欧美成人精品欧美一级乱黄 | 日本www片| 日韩 欧美 国产 亚洲 中文 | 五月婷婷丁香网 | www色视频在线观看 www色在线 | 国语精品91自产拍在线观看二区 | 久久影院中文字幕 | 九九视频这里只有精品99 | 欧美在线xx | 国产精品久久久久影视青草 | 欧美日本高清视频在线观看 |