用处:http://blog.csdn.net/tjcyjd/article/details/6741882
$(‘.scroll‘).on(‘click‘, function(){ $(this).hide(‘slow‘); alert(‘先alert,再隐藏‘); }) $(‘.scroll‘).on(‘click‘, function(){ $(this).hide(‘slow‘, function(){ alert(‘先隐藏再alert‘); });
1、callbacks.add()
回调列表中添加一个回调或回调的集合
2、disable()
禁用回调列表中得回调
3、empty()
清空
4、fire()
调用回调函数:把参数传给所有的回调函数
5、fired()
测试回调函数是否被调用过
6、fireWith()
指定上下文和参数:callbacks.fireWith( window, [‘foo‘,‘bar‘]);
7、has()
是否有
8、lock()
锁定回调列表
9、locked()
是否锁定
10、remove()
删除某个回调函数
11、$.callbacks(flag):挺麻烦的
flag:once, memory, unique, stopOnFalse
时间: 2024-10-25 20:37:33