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


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


用法
callbacks.add( callbacks ) => Callbacks

說明:將回調或回調集合添加到回調列表。

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

    • callbacks
      類型:Function () 或 Array
      要添加到回調列表的函數或函數數組。

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

例子:

使用 callbacks.add() 將新回調添加到回調列表:

// A sample logging function to be added to a callbacks list
var foo = function( value ) {
  console.log( "foo: " + value );
};
 
// Another function to also be added to the list
var bar = function( value ) {
  console.log( "bar: " + 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"
 
// Add the function "bar" to the list
callbacks.add( bar );
 
// Fire the items on the list again
callbacks.fire( "world" );
 
// Outputs:
// "foo: world"
// "bar: world"

相關用法


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