callbacks.fireWith([context][,args])

2018-02-24 15:15 更新

返回值:undefinedcallbacks.fireWith([context][,args])

概述

訪問給定的上下文和參數(shù)列表中的所有回調(diào)

參數(shù)

**[context][,args]**V1.7

context: 該列表中的回調(diào)被觸發(fā)的上下文引用

args: 一個參數(shù)或參數(shù)列表傳回給回調(diào)列表。

示例

描述:

使用?callbacks.fireWith()?訪問給定的上下文和參數(shù)列表中的所有回調(diào)。

jQuery 代碼:
// 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
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號