当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。