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


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