This is especially usef " /> 日本成人一区二区,成人av一区,国产精品久久久久蜜臀

中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

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對象 學習,轉載需保留來源!

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

主站蜘蛛池模板: 一区二区国产精品 | 国产精品综合色区在线观看 | 欧美三级网站 | 国产在线一区二区三区 | 先锋资源吧| 99成人免费视频 | 久www| 亚洲国产成人精品女人久久久野战 | 一区二区三区免费看 | 欧美日产国产成人免费图片 | 亚洲电影专区 | 涩涩视频网 | 婷婷综合网 | 精品国产视频 | 色婷婷综合网 | 亚洲国产精品91 | 永久免费在线观看 | 午夜爱爱毛片xxxx视频免费看 | 日韩免费视频一区二区 | 久久精品99国产精品日本 | 午夜精品久久久久久久久久久久久 | 成人影音 | 高清久久久 | 中文字幕av一区二区三区 | 亚洲成人精品 | 国产一区久久精品 | a级黄色毛片免费播放视频 国产精品视频在线观看 | 男人天堂网址 | 国产精品久久久亚洲 | 精品一区二区三区在线观看国产 | 亚洲国产成人精品女人久久久 | 久久91精品国产一区二区 | 亚洲视频中文字幕 | 中文字幕电影在线观看 | www国产亚洲精品久久网站 | 国产成人99久久亚洲综合精品 | 欧美亚洲国产精品 | 在线观看亚洲精品 | 蜜臀久久 | 视频精品一区 | 亚洲欧洲日韩精品 中文字幕 |