제이쿼리 callbacks.empty()

· 2017-08-11 (금) 14:33:02 · 2179

제이쿼리 callbacks.empty()

설명 : 목록에서 모든 콜백을 제거하십시오.



예:

callbacks.empty()콜백 목록을 비우려면 다음 을 사용하십시오 


// A sample logging function to be added to a callbacks list

var foo = function( value1, value2 ) {

  console.log( "foo: " + value1 + "," + value2 );

};

 

// Another function to also be added to the list

var bar = function( value1, value2 ) {

  console.log( "bar: " + value1 + "," + value2 );

};

 

var callbacks = $.Callbacks();

 

// Add the two functions

callbacks.add( foo );

callbacks.add( bar );

 

// Empty the callbacks list

callbacks.empty();

 

// Check to ensure all callbacks have been removed

console.log( callbacks.has( foo ) );

// false

console.log( callbacks.has( bar ) );

// false


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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-11 조회 1,807
jQuery 17-08-11 조회 2,696
jQuery 17-08-11 조회 2,180
PHP 17-08-10 조회 4,219
jQuery 17-08-10 조회 2,074
jQuery 17-08-10 조회 2,362
jQuery 17-08-10 조회 2,214
jQuery 17-08-09 조회 1,962
jQuery 17-08-09 조회 2,657
jQuery 17-08-09 조회 2,182
jQuery 17-08-08 조회 2,505
jQuery 17-08-08 조회 2,253
jQuery 17-08-08 조회 2,506
jQuery 17-08-07 조회 2,186
jQuery 17-08-07 조회 1,999
jQuery 17-08-07 조회 1,805
jQuery 17-08-06 조회 2,208
jQuery 17-08-06 조회 2,843
jQuery 17-08-06 조회 1,868
jQuery 17-08-04 조회 2,265
jQuery 17-08-04 조회 2,237
jQuery 17-08-04 조회 3,082
jQuery 17-08-03 조회 2,548
jQuery 17-08-03 조회 2,432
jQuery 17-08-03 조회 2,425
jQuery 17-08-02 조회 2,176
jQuery 17-08-02 조회 1,556
jQuery 17-08-02 조회 2,246
jQuery 17-08-01 조회 2,982
jQuery 17-08-01 조회 2,878