加载中...

callbacks.locked()1.7+


概述    callbacks.locked()

返回值:Boolean

描述:确定回调列表是否已被锁定。

  • V : 1.7callbacks.locked()

    • 这个方法不接受任何参数

示例

实例

用 callbacks.locked() 确定是否已被锁定的回调列表。:

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 logging function to the callback list
callbacks.add( foo );

// fire the items on the list, passing an argument
callbacks.fire( 'hello' );
// outputs 'foo: hello'

// lock the callbacks list
callbacks.lock();

// test the lock-state of the list
console.log ( callbacks.locked() ); //true

还没有评论.