제이쿼리 callbacks.fire (arguments)

· 2017-08-11 (금) 14:33:38 · 2689

제이쿼리 callbacks.fire (arguments)

설명 : 주어진 인수를 사용하여 모든 콜백을 호출하십시오.



예:

callbacks.fire()전달 된 인수가있는 목록에서 콜백을 호출하는 데 사용 합니다.


// 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,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-06-06 조회 2,332
PHP 17-06-05 조회 2,729
PHP 17-06-05 조회 2,466
PHP 17-06-05 조회 2,569
기타 17-06-02 조회 4,367
PHP 17-06-02 조회 3,148
PHP 17-06-01 조회 2,348
PHP 17-06-01 조회 2,967
PHP 17-06-01 조회 2,186
jQuery 17-05-27 조회 3,234
MySQL 17-05-27 조회 4,156
jQuery 17-05-26 조회 3,130
JavaScript 17-05-26 조회 2,788
PHP 17-05-24 조회 2,414
PHP 17-05-24 조회 2,148
PHP 17-05-24 조회 2,703
PHP 17-05-16 조회 3,323
PHP 17-05-16 조회 2,664
PHP 17-05-16 조회 2,564
node.js 17-05-14 조회 2,130
node.js 17-05-14 조회 2,591
node.js 17-05-14 조회 2,274
PHP 17-05-12 조회 2,781
PHP 17-05-12 조회 2,942
PHP 17-05-12 조회 2,790
PHP 17-05-11 조회 2,814
PHP 17-05-11 조회 2,972
PHP 17-05-11 조회 2,320
PHP 17-05-05 조회 2,849
PHP 17-05-05 조회 2,597