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. HOWTO: Setup XCode 6.1 to work with OpenCV3 libraries

    HOWTO: Setup XCode 6.1 to work with OpenCV3 libraries Overview This post demonstrates how to setup y ...

  2. ASP.NET MVC- Controllers and Routing- Routing

    二.Creating Custom Routes In this tutorial, you learn how to  add a custom route to an ASP.NET MVC ap ...

  3. Winform 换皮肤

    winform换肤流程如下: (1)程序入口,添加以下代码: //换肤 private void Skinjsj() { DevExpress.UserSkins.BonusSkins.Registe ...

  4. 最严格的身份证校验(JavaScript版)

    在JavaWeb研发过程中为了获取有效的用户信息,校验其数据的有效性非常是必要,以下贴出在项目中用到的关于身份证的校验: <!DOCTYPE HTML PUBLIC "-//W3C// ...

  5. CreateEvent的使用方法

     CreateEvent的使用方法收藏 新一篇: PreCreateWindow的作用和用法 | 旧一篇: VC中_T()的作用 function StorePage(){d=document;t=d ...

  6. 2014 百度之星题解 1002 - Disk Schedule

    Problem Description 有非常多从磁盘读取数据的需求,包含顺序读取.随机读取.为了提高效率,须要人为安排磁盘读取.然而,在现实中,这样的做法非常复杂.我们考虑一个相对简单的场景. 磁盘 ...

  7. 使用like时left outer join和inner join的区别

    --select top 10000 * into #s from search set statistics time on set statistics io on select userId,c ...

  8. MapReduce中的map个数

    在map阶段读取数据前,FileInputFormat会将输入文件分割成split.split的个数决定了map的个数.影响map个数(split个数)的主要因素有: 1) 文件的大小.当块(dfs. ...

  9. 【转】C++:在程序中获取全球唯一标识号(GUID或UUID)

    Windows:使用CoCreateGuid函数(GUID) #include <objbase.h> #include <stdio.h> #define GUID_LEN ...

  10. Spring XD 1.1 M2 and 1.0.3 released---support kafka

    官方地址:http://spring.io/blog/2014/12/23/spring-xd-1-1-m2-and-1-0-3-released On behalf of the Spring XD ...