제이쿼리 callbacks.fired()

· 2017-08-15 (화) 22:52:35 · 1883

제이쿼리 callbacks.fired()


설명 : 콜백이 적어도 한 번 이상 호출되었는지 확인하십시오.

예:

callbacks.fired()목록의 콜백이 적어도 한 번 호출되었는지 확인하는 데 사용 합니다.

// 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"

 

// Test to establish if the callbacks have been called

console.log( callbacks.fired() );

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-27 조회 2,065
jQuery 17-08-27 조회 2,198
jQuery 17-08-25 조회 2,052
jQuery 17-08-25 조회 2,082
jQuery 17-08-25 조회 2,286
jQuery 17-08-24 조회 1,803
jQuery 17-08-24 조회 2,581
jQuery 17-08-24 조회 2,023
jQuery 17-08-23 조회 2,239
jQuery 17-08-23 조회 2,256
jQuery 17-08-23 조회 2,482
jQuery 17-08-22 조회 2,422
jQuery 17-08-22 조회 1,919
jQuery
[jQuery]
17-08-22 조회 2,397
PHP 17-08-21 조회 7,406
jQuery 17-08-20 조회 3,046
jQuery 17-08-20 조회 2,064
jQuery 17-08-20 조회 2,126
jQuery 17-08-18 조회 2,266
jQuery 17-08-18 조회 1,743
jQuery 17-08-18 조회 2,354
jQuery 17-08-17 조회 2,105
jQuery 17-08-17 조회 2,309
jQuery 17-08-17 조회 2,432
jQuery 17-08-16 조회 2,040
jQuery 17-08-16 조회 2,054
jQuery 17-08-16 조회 2,018
jQuery 17-08-15 조회 1,704
jQuery 17-08-15 조회 1,869
jQuery 17-08-15 조회 1,884