加载中...

callbacks.empty()1.7+


概述    callbacks.empty()

返回值:Callbacks

描述:从列表中删除所有的回调.

  • V : 1.7callbacks.empty()

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

此方法返回绑定它的那个回调对象(this).

示例

实例

使用 callbacks.empty() 清空回调列表:

jQuery 代码:
  1. // a sample logging function to be added to a callbacks list
  2. var foo = function( value1, value2 ){
  3. console.log( 'foo:' + value1 + ',' + value2 );
  4. }
  5. // another function to also be added to the list
  6. var bar = function( value1, value2 ){
  7. console.log( 'bar:' + value1 + ',' + value2 );
  8. }
  9. var callbacks = $.Callbacks();
  10. // add the two functions
  11. callbacks.add( foo );
  12. callbacks.add( bar );
  13. // empty the callbacks list
  14. callbacks.empty();
  15. // check to ensure all callbacks have been removed
  16. console.log( callbacks.has( foo ) ); // false
  17. console.log( callbacks.has( bar ) ); // false

还没有评论.