callbacks.fired()

2018-02-24 15:15 更新

返回值:Booleancallbacks.fired()

V1.7概述

用給定的參數(shù)調(diào)用所有的回調(diào)。

示例

描述:

使用callbacks.fired()?確定,如果列表中的回調(diào)至少有一次被呼叫

jQuery 代碼:
// 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() );
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)