제이쿼리 callbacks.remove( callbacks )

· 2017-08-16 (수) 19:07:49 · 2039

제이쿼리 callbacks.remove( callbacks )


설명 : 콜백 목록에서 콜백 또는 콜백 콜렉션을 제거합니다.


예:

callbacks.remove()콜백 목록에서 콜백을 제거하는 데 사용 합니다.


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

 

// Remove "foo" from the callback list

callbacks.remove( foo );

 

// Fire the items on the list again

callbacks.fire( "world" );

 

// Nothing output as "foo" is no longer in the list

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

개발자팁

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,255
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,125
jQuery 17-08-18 조회 2,266
jQuery 17-08-18 조회 1,743
jQuery 17-08-18 조회 2,354
jQuery 17-08-17 조회 2,104
jQuery 17-08-17 조회 2,309
jQuery 17-08-17 조회 2,432
jQuery 17-08-16 조회 2,040
jQuery 17-08-16 조회 2,053
jQuery 17-08-16 조회 2,018
jQuery 17-08-15 조회 1,704
jQuery 17-08-15 조회 1,869
jQuery 17-08-15 조회 1,883