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. 依賴注入入門——Unity(二)

    參考博客文章http://www.cnblogs.com/kebixisimba/category/130432.html http://www.cnblogs.com/qqlin/tag/Unity ...

  2. SRM 446(1-250pt, 1-500pt)

    嗯....今天的500确实比较好 DIV1 250 模拟...略 // BEGIN CUT HERE /* * Author: plum rain * score : */ /* */ // END ...

  3. 采集爬虫中,解决网站限制IP的问题? - wendi_0506的专栏 - 博客频道 - CSDN.NET

    采集爬虫中,解决网站限制IP的问题? - wendi_0506的专栏 - 博客频道 - CSDN.NET undefined

  4. C# 动态创建出来的窗体间的通讯 delegate1

    附件 http://files.cnblogs.com/xe2011/CSharp_WindowsForms_delegate01.rar 需要每个窗体是独立存在,禁止相与引用窗体 这样干净并且可以反 ...

  5. 【Java基础】Jar包结构结构分析和操作具体解释

    作者:郭嘉 邮箱:allenwells@163.com 博客:http://blog.csdn.net/allenwells github:https://github.com/AllenWell 一 ...

  6. Java基础知识强化之IO流笔记31:转换流出现的原因和格式

    1. 由于字节流操作中文不是特别方便,所以Java就提供了转换流.  字符流 = 字节流 + 编码表 2. 编码表 由字符及其对应数值组成的一张表 常见的编码表: • ASCII/Unicode字符集 ...

  7. log4j的properties详细配置,分级输出日志文件

            log4j是很常用的日志类包,在此做一下配置的记录 加载jar包和properities配置文件             将commons-logging.jar和logging-lo ...

  8. JDK自带方法实现RSA数字签名

    JDK 6只支持MD2withRSA, MD5withRSA, SHA1withRSA 其他的如SHA512withRSA需要第三方包支持,如BC(bouncy castle) --20151126 ...

  9. ionic 项目分享No.2——简化版【转】

    写在文章前:由于最近研究ionic框架,深感这块的Demo寥寥可数,而大家又都藏私,堂堂天朝,何时才有百家争鸣之象,开源精神吾辈当仁不让!                                ...

  10. javascript 【js‘s word】

    http://mp.weixin.qq.com/s?__biz=MjM5MzY2NDY0Ng==&mid=214013689&idx=1&sn=21e03f6c7bf73893 ...