제이쿼리 callbacks.fireWith ([context] [, args])

· 2017-08-15 (화) 22:53:33 · 1866

제이쿼리 callbacks.fireWith ([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"

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-27 조회 2,059
jQuery 17-08-27 조회 2,195
jQuery 17-08-25 조회 2,051
jQuery 17-08-25 조회 2,080
jQuery 17-08-25 조회 2,278
jQuery 17-08-24 조회 1,798
jQuery 17-08-24 조회 2,579
jQuery 17-08-24 조회 2,020
jQuery 17-08-23 조회 2,235
jQuery 17-08-23 조회 2,251
jQuery 17-08-23 조회 2,477
jQuery 17-08-22 조회 2,419
jQuery 17-08-22 조회 1,916
jQuery
[jQuery]
17-08-22 조회 2,392
PHP 17-08-21 조회 7,400
jQuery 17-08-20 조회 3,043
jQuery 17-08-20 조회 2,061
jQuery 17-08-20 조회 2,118
jQuery 17-08-18 조회 2,264
jQuery 17-08-18 조회 1,741
jQuery 17-08-18 조회 2,348
jQuery 17-08-17 조회 2,101
jQuery 17-08-17 조회 2,302
jQuery 17-08-17 조회 2,430
jQuery 17-08-16 조회 2,036
jQuery 17-08-16 조회 2,048
jQuery 17-08-16 조회 2,016
jQuery 17-08-15 조회 1,698
jQuery 17-08-15 조회 1,867
jQuery 17-08-15 조회 1,877