1.callbacks.add(callbacks)//回调列表中添加一个回调或回调的集合

// a sample logging function to be added to a callbacks list
var foo = function( value ){
console.log( 'foo:' + value );
} // another function to also be added to the list
var bar = function( value ){
console.log( 'bar:' + value );
} var callbacks = $.Callbacks(); // add the function 'foo' to the list
callbacks.add( foo ); // fire the items on the list
callbacks.fire( 'hello' );
// outputs: 'foo: hello' // add the function 'bar' to the list
callbacks.add( bar ); // fire the items on the list again
callbacks.fire( 'world' ); // outputs:
// 'foo: world'
// 'bar: world'

2.callbacks.disable()//禁用回调列表中的回调

// a sample logging function to be added to a callbacks list
var foo = function( value ){
console.log( value );
} var callbacks = $.Callbacks(); // add the above function to the list
callbacks.add( foo ); // fire the items on the list
callbacks.fire( 'foo' ); // outputs: foo // disable further calls being possible
callbacks.disable(); // attempt to fire with 'foobar' as an argument
callbacks.fire( 'foobar' ); // foobar isn't output

3.callbacks.empty()//从列表中删除所有的回调.

// a sample logging function to be added to a callbacks list
var foo = function( value1, value2 ){
console.log( 'foo:' + value1 + ',' + value2 );
} // another function to also be added to the list
var bar = function( value1, value2 ){
console.log( 'bar:' + value1 + ',' + value2 );
} var callbacks = $.Callbacks(); // add the two functions
callbacks.add( foo );
callbacks.add( bar ); // empty the callbacks list
callbacks.empty(); // check to ensure all callbacks have been removed
console.log( callbacks.has( foo ) ); // false
console.log( callbacks.has( bar ) ); // false

4.callbacks.fire(arguments)//禁用回调列表中的回调

// a sample logging function to be added to a callbacks list
var foo = function( value ){
console.log( 'foo:' + value );
} var callbacks = $.Callbacks(); // add the function 'foo' to the list
callbacks.add( foo ); // fire the items on the list
callbacks.fire( 'hello' ); // outputs: 'foo: hello'
callbacks.fire( 'world '); // outputs: 'foo: world' // add another function to the list
var bar = function( value ){
console.log( 'bar:' + value );
} // add this function to the list
callbacks.add( bar ); // fire the items on the list again
callbacks.fire( 'hello again' );
// outputs:
// 'foo: hello again'
// 'bar: hello again'

5.callbacks.fired()//用给定的参数调用所有的回调。

// a sample logging function to be added to a callbacks list
var foo = function( value ){
console.log( 'foo:' + value );
} var callbacks = $.Callbacks(); // add the function 'foo' to the list
callbacks.add( foo ); // fire the items on the list
callbacks.fire( 'hello' ); // outputs: 'foo: hello'
callbacks.fire( 'world '); // outputs: 'foo: world' // test to establish if the callbacks have been called
console.log( callbacks.fired() );

6.callbacks.fireWith([context][,args])//访问给定的上下文和参数列表中的所有回调

7.callbacks.has(callback)//确定是否提供的回调列表

8.callbacks.lock()//锁定在其当前状态的回调列表。

9.callbacks.locked()//确定是否已被锁定的回调列表

10.callbacks.remove(callbacks)//删除回调或回调回调列表的集合。

11.jQuery.callbacks(flags)//一个多用途的回调列表对象,提供了强大的的方式来管理回调函数列表。

jQuery慢慢啃之回调(十三)的更多相关文章

  1. jQuery慢慢啃之工具(十)

    1.jQuery.support//一组用于展示不同浏览器各自特性和bug的属性集合 2.jQuery.browser//浏览器内核标识.依据 navigator.userAgent 判断. 可用值: ...

  2. jQuery慢慢啃之ajax(九)

    1.jQuery.ajax(url,[settings])//通过 HTTP 请求加载远程数据 如果要处理$.ajax()得到的数据,则需要使用回调函数.beforeSend.error.dataFi ...

  3. jQuery慢慢啃之特效(八)

    1.show([speed,[easing],[fn]])\\显示隐藏的匹配元素 //speed:三种预定速度之一的字符串("slow","normal", o ...

  4. jQuery慢慢啃之事件对象(十一)

    1.event.currentTarget//在事件冒泡阶段中的当前DOM元素 $("p").click(function(event) { alert( event.curren ...

  5. jQuery慢慢啃之事件(七)

    1.ready(fn)//当DOM载入就绪可以查询及操纵时绑定一个要执行的函数. $(document).ready(function(){ // 在这里写你的代码...}); 使用 $(docume ...

  6. jQuery慢慢啃之CSS(六)

    1.css(name|pro|[,val|fn])//访问匹配元素的样式属性 $("p").css("color");//获取 $("p") ...

  7. jQuery慢慢啃之文档处理(五)

    1.append(content|fn)//向每个匹配的元素内部追加内容. $("p").append("<b>Hello</b>"); ...

  8. jQuery慢慢啃筛选(四)

    1.eq(index|-index) 获取第N个元素 其中负数:一个整数,指示元素的位置,从集合中的最后一个元素开始倒数.(1算起) $("p").eq(1)//获取匹配的第二个元 ...

  9. jQuery慢慢啃之核心(一)

    1. $("div > p"); div 元素的所有p子元素. $(document.body).css( "background", "bla ...

随机推荐

  1. bzoj 3226 [Sdoi2008]校门外的区间(线段树)

    3226: [Sdoi2008]校门外的区间 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 615  Solved: 227[Submit][Stat ...

  2. 我的第一篇Markdown博客

    我的第一篇Markdown博客 这是我第一次用Markdown写博客,发现还是比较好用的,加上Marsedit也支持了Markdown的博客预览,博客园也加了Markdown的格式支持,就更加方便了, ...

  3. JavaScript高级程序设计47.pdf

    触摸设备 iOS和Android设备的实现非常特别,因为这些设备没有鼠标,在面向iPhone和iPod中的Safari开发时,要记住以下几点 不支持dblclick事件,双击浏览器窗口会放大画面,没有 ...

  4. octopress Endless Error With Gem Dependencies

    因为重装系统的缘故,需要重新搭建octopress环境,在执行到: bundle install 会出现一些这样的错误:An error occurred while installing timer ...

  5. 研磨设计模式解析及python代码实现——(二)外观模式(Facade)

    一.外观模式定义 为子系统中的一组接口提供一个一致的界面,使得此子系统更加容易使用. 二.书中python代码实现 class AModuleApi: def testA(self): pass cl ...

  6. javascript函数定义表达式和函数声明的区别

    在javascript中,函数有两种定义写法,函数定义表达式和函数声明,其例子分别如下所示: var test = function(x){ return x; } function test(x){ ...

  7. java 学习笔记4

    (1)      线程的强制运行 先看线程强制运行的实例 ,再解释程序中是如何让程序强制运行的 public class ThreadTest1 implementsRunnable { public ...

  8. 使用VNC实现多用户登录linux系统

    vmare版本:12.0.0 build-2985596

  9. PHP环境配置综合篇

    1.WNMP: http://www.wnmp.com.cn/     En: https://www.getwnmp.org/ 2.xampp:https://www.apachefriends.o ...

  10. 【转】Android 混淆代码总结

    http://blog.csdn.net/lovexjyong/article/details/24652085 为了防止自己的劳动成果被别人窃取,混淆代码能有效防止被反编译,下面来总结以下混淆代码的 ...