제이쿼리 callbacks.empty()

· 8년 전 · 1899

제이쿼리 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


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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,978
jQuery 8년 전 조회 1,485
jQuery 8년 전 조회 2,066
jQuery 8년 전 조회 1,825
jQuery 8년 전 조회 2,028
jQuery 8년 전 조회 2,157
jQuery 8년 전 조회 1,778
jQuery 8년 전 조회 1,796
jQuery 8년 전 조회 1,745
jQuery 8년 전 조회 1,428
jQuery 8년 전 조회 1,572
jQuery 8년 전 조회 1,610
jQuery 8년 전 조회 1,522
jQuery 8년 전 조회 2,412
jQuery 8년 전 조회 1,900
PHP 8년 전 조회 3,945
jQuery 8년 전 조회 1,799
jQuery 8년 전 조회 2,085
jQuery 8년 전 조회 1,935
jQuery 8년 전 조회 1,696
jQuery 8년 전 조회 2,365
jQuery 8년 전 조회 1,899
jQuery 8년 전 조회 2,214
jQuery 8년 전 조회 1,995
jQuery 8년 전 조회 2,232
jQuery 8년 전 조회 1,917
jQuery 8년 전 조회 1,702
jQuery 8년 전 조회 1,512
jQuery 8년 전 조회 1,946
jQuery 8년 전 조회 2,572