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


JQuery callbacks.fired()用法及代码示例


用法
callbacks.fired() => Boolean

说明:确定回调是否已经至少被调用过一次。

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

    • 此方法不接受任何参数。

例子:

使用 callbacks.fired() 确定列表中的回调是否至少被调用过一次:

// 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"
 
// Test to establish if the callbacks have been called
console.log( callbacks.fired() );

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 callbacks.fired()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。