中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

callbacks.lock()方法怎么用

發布時間:2022-03-05 11:16:33 來源:億速云 閱讀:117 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關callbacks.lock()方法怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

  callbacks.lock()

  描述: 鎖定回調列表的當前狀態。

  添加的版本: 1.7callbacks.lock()

  這個方法不接受任何參數

  此方法返回綁定它的那個回調對象(this).

  如果回調對象被創建,用"memory"標志作為它的參數,綁定函數可能會在回調列表中被鎖定后增加并且觸發。

  例子:

  Example: 用 callbacks.lock() 鎖定一個回調列表,以避免進一步的修改列表狀態 :

  // a sample logging function to be added to a callbacks list

  var foo = function( value ) {

  console.log( "foo:" + value );

  };

  var callbacks = $.Callbacks();

  // add the logging function to the callback list

  callbacks.add( foo );

  // fire the items on the list, passing an argument

  callbacks.fire( "hello" );

  // outputs "foo: hello"

  // lock the callbacks list

  callbacks.lock();

  // try firing the items again

  callbacks.fire( "world" );

  // as the list was locked, no items

  // were called, so "world" isn"t logged

  Example: Use callbacks.lock() to lock a callback list with "memory," and then resume using the list:

  <!DOCTYPE html>

  <html>

  <head>

  <script src="https://code.jquery.com/jquery-latest.js"></script>

  </head>

  <body>

  <div id="log"></div>

  <script>// simple function for logging results

  var log = function( value) {

  $( "#log" ).append( "<p>" + value + "</p>" );

  };

  // two sample functions to be added to a callbacks list

  var foo = function( value ) {

  log( "foo: " + value );

  };

  var bar = function( value ) {

  log( "bar: " + value );

  };

  // create the callbacks object with the "memory" flag

  var callbacks = $.Callbacks( "memory" );

  // add the foo logging function to the callback list

  callbacks.add( foo );

  // fire the items on the list, passing an argument

  callbacks.fire( "hello" );

  // outputs "foo: hello"

  // lock the callbacks list

  callbacks.lock();

  // try firing the items again

  callbacks.fire( "world" );

  // as the list was locked, no items were called,

  // so "foo: world" isn't logged

  // add the foo function to the callback list again

  callbacks.add( foo );

  // try firing the items again

  callbacks.fire( "silentArgument" );

  // outputs "foo: hello" because the argument value was stored in memory

  // add the bar function to the callback list

  callbacks.add( bar );

  callbacks.fire( "youHadMeAtHello" );

  // outputs "bar: hello" because the list is still locked,

  // and the argument value is still stored in memory

  </script>

  </body>

  </html>

關于“callbacks.lock()方法怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

雷波县| 永仁县| 滁州市| 吴川市| 江油市| 冷水江市| 嘉兴市| 桃园市| 梨树县| 德昌县| 屏山县| 张掖市| 连平县| 伊春市| 镇宁| 永昌县| 北海市| 英德市| 巴彦淖尔市| 治县。| 北辰区| 伊川县| 博湖县| 灵璧县| 丽江市| 高尔夫| 射阳县| 东辽县| 枣强县| 东山县| 平阴县| 南溪县| 咸阳市| 洪湖市| 浦北县| 柘荣县| 社会| 孝义市| 古蔺县| 揭阳市| 稷山县|