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


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


用法
callbacks.fire( arguments ) => Callbacks

說明:使用給定參數調用所有回調。

  • 添加的版本:1.7callbacks.fire( arguments )

    • arguments
      類型:Anything
      要傳回回調列表的參數或參數列表。

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

例子:

使用 callbacks.fire() 使用已傳遞的任何參數調用列表中的回調:

// A sample logging function to be added to a callbacks list
var foo = function( value ) {
  console.log( "foo:" + value );
};
 
var callbacks = $.Callbacks();
 
// Add the function "foo" to the list
callbacks.add( foo );
 
// Fire the items on the list
callbacks.fire( "hello" ); // Outputs: "foo: hello"
callbacks.fire( "world" ); // Outputs: "foo: world"
 
// Add another function to the list
var bar = function( value ){
  console.log( "bar:" + value );
};
 
// Add this function to the list
callbacks.add( bar );
 
// Fire the items on the list again
callbacks.fire( "hello again" );
// Outputs:
// "foo: hello again"
// "bar: hello again"

相關用法


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