當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery callbacks.fireWith()用法及代碼示例


用法
callbacks.fireWith(  [context ] [, args ] ) => Callbacks

說明:使用給定的上下文和參數調用列表中的所有回調。

  • 添加的版本:1.7callbacks.fireWith( [context ] [, args ] )

    • context
      類型:Anything
      對應該觸發列表中的回調的上下文的引用。
    • args
      要傳遞給列表中回調的參數數組或array-like 對象。如果省略或未定義,則不會傳遞任何參數。

此方法返回它所附加的回調對象 (this)。

例子:

使用 callbacks.fireWith() 觸發具有特定上下文和參數數組的回調列表:

// A sample logging function to be added to a callbacks list
var log = function( value1, value2 ) {
  console.log( "Received: " + value1 + "," + value2 );
};
 
var callbacks = $.Callbacks();
 
// Add the log method to the callbacks list
callbacks.add( log );
 
// Fire the callbacks on the list using the context "window"
// and an arguments array
 
callbacks.fireWith( window, [ "foo","bar" ] );
// Outputs: "Received: foo, bar"

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 callbacks.fireWith()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。