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


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