This is especially usef " /> 亚洲91av,国产免费内射又粗又爽密桃视频,亚洲国产成人在线视频

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

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

主站蜘蛛池模板: 亚洲成色WWW久久网站夜月 | 国产精品女主播主要上线 | 国产精品永久免费 | 小蝌蚪视频在线观看免费观看WWW | 三级网址在线观看 | 涩涩电影网 | 99热这里只有精品9 99热这里只有精品88 | 亚洲国产欧美日韩在线一区 | 欧美高清视频www夜色资源网 | 国产精品1卡二卡三卡四卡乱码 | 日韩欧美视频一区二区在线观看 | 在线精品视频免费观看 | 午夜视频体内射.COM.COM | 绝色娇嫩美人妻老师 | 兰桂坊人成社区亚洲精品 | 成人国产在线观看 | a毛片基地免费全部视频 | 99久久99久久精品国产片果冻 | 久久婷五月综合色啪网 | 午夜人妻理论片天堂影院 | 879影视动漫h免费观看 | 欧美色图14p| 2021国产精品视频 | 精品国产美女AV久久久久 | 日本XXXXZZX片免费观看 | 日本精品久久无码影院 | 免费看成人毛片 | 99国产精品免费视频 | 色欲人妻无码AV专区 | 亚洲麻豆精品成人A在线观看 | 99精品在线播放 | 精品午夜久久影视 | 国产成人在线小视频 | 一个人HD高清在线观看免费视频 | 99热免费精品店 | 99爱视频在线观看 | 国产亚洲中文字幕视频 | 成年AV动漫 | 国产精品一区二区四区 | 国产成人自产拍免费视频 | 国产精品999 |