當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。