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


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


用法
callbacks.disabled() => Boolean

说明:确定回调列表是否已禁用。

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

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

例子:

使用 callbacks.disabled() 确定回调列表是否已被禁用:

// 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"
 
// Disable the callbacks list
callbacks.disable();
 
// Test the disabled state of the list
console.log ( callbacks.disabled() );
// Outputs: true

相关用法


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