callbacks.has()

callbacks.has()

callbacks.has( [callback ] )Returns: Boolean

Description: Determine whether or not the list has any callbacks attached. If a callback is provided as an argument, determine whether it is in a list.

Example:

Use callbacks.has() to check if a callback list contains a specific callback:

// A sample logging function to be added to a callbacks list
var foo = function( value1, value2 ) {
  console.log( "Received: " + value1 + "," + value2 );
};
 
// A second function which will not be added to the list
var bar = function( value1, value2 ) {
  console.log( "foobar" );
};
 
var callbacks = $.Callbacks();
 
// Add the log method to the callbacks list
callbacks.add( foo );
 
// Determine which callbacks are in the list
console.log( callbacks.has( foo ) );
// true
console.log( callbacks.has( bar ) );
// false

© The jQuery Foundation and other contributors
Licensed under the MIT License.
https://api.jquery.com/callbacks.has

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部