访问给定的上下文和参数列表中的所有回调
context: 该列表中的回调被触发的上下文引用
args: 一个参数或参数列表传回给回调列表。
使用 callbacks.fireWith() 访问给定的上下文和参数列表中的所有回调。
// a sample logging function to be added to a callbacks list
var log = function( value1, value2 ){
console.log( 'Received:' + value1 + ',' + value2 );
}
var callbacks = $.Callbacks();
// add the log method to the callbacks list
callbacks.add( log );
// fire the callbacks on the list using the context 'window'
// and an arguments array
callbacks.fireWith( window, ['foo','bar']);
// outputs: Received: foo, bar
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。