W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
訪問給定的上下文和參數(shù)列表中的所有回調(diào)
context: 該列表中的回調(diào)被觸發(fā)的上下文引用
args: 一個參數(shù)或參數(shù)列表傳回給回調(diào)列表。
使用?callbacks.fireWith()?訪問給定的上下文和參數(shù)列表中的所有回調(diào)。
// 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
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: