This is especially usef " /> 在线免费视频a,国内精品久久久久影,老司机午夜免费福利

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

Prototype PeriodicalExecuter對象 學習

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.


這個對象就是可以周期性的執行某個方法,但是在它內部維持了一個狀態,可以防止由于某些原因一次調用沒執行,然后下一次調用又來了,這樣會造成連續執行兩次方法。上面的第二斷英文就是這個意思。

幫助文檔上說這個對象只提供了一個方法stop,但是在我看的源碼里還提供了一個事件onTimerEvent,應該可以在某個時候觸發這個事件。但幫助文檔上沒有給出示例。

這個對象源碼比較簡單,這里直接貼出來了,就不再注釋了:
復制代碼 代碼如下:
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;
}
}
}
});

看一下示例:
復制代碼 代碼如下:
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技術Prototype PeriodicalExecuter對象 學習,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 中文在线不卡 | 精品久久久噜噜噜久久7 | 日韩天堂在线 | 97成人在线视频 | 一本色道久久99一综合 | 在线视频亚洲欧美 | 玖玖在线国产精品 | 成人精品亚洲人成在线 | 成人区精品一区二区不卡亚洲 | 久久综合九色综合97婷婷女人 | caoporn97人人做人人爱最新 | 欧美人与物另类 | 色的视频网站 | 黄色在线观看视频 | 真实乱视频国产免费观看 | 午夜亚洲国产成人不卡在线 | 一本大道加勒比久久 | 四虎影视在线永久免费观看 | 久久国产精品久久精 | 美女视频黄频大全免费视频 | 婷婷综合激情 | 美女一级毛片 | 亚洲一区二区免费 | 久久综合加勒比 | 国产福利在线观看 极品美女 | 欧美五级在线观看视频播放 | 美女视频黄色 | 精品欧美亚洲韩国日本久久 | 成人久久免费视频 | 激情小说区 | 精品在线91 | 久久综合久久网 | 国产精品福利在线观看免费不卡 | 亚洲天堂色视频 | 成人小视频网 | 亚洲丶国产丶欧美一区二区三区 | 亚洲激情在线观看 | 在线观看亚洲一区二区 | 日本人真淫视频一区二区三区 | 99精品久久精品一区二区 | 好吊妞视频在线观看 |