제이쿼리 callbacks.disable ()

· 8년 전 · 1819

제이쿼리 callbacks.disable ()


설명 : 콜백 목록에서 더 이상 아무것도 수행하지 못하게하십시오.


이 메서드는 그것이 첨부 된 Callbacks 개체를 반환합니다 ( this).


예:

사용 callbacks.disable()콜백 목록에 추가 호출을 사용하지 :


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

var foo = function( value ) {

  console.log( value );

};

 

var callbacks = $.Callbacks();

 

// Add the above function to the list

callbacks.add( foo );

 

// Fire the items on the list

callbacks.fire( "foo" );

// Outputs: foo

 

// Disable further calls being possible

callbacks.disable();

 

// Attempt to fire with "foobar" as an argument

callbacks.fire( "foobar" );

// foobar isn't output

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 2,092
jQuery 8년 전 조회 1,852
jQuery 8년 전 조회 2,049
jQuery 8년 전 조회 2,180
jQuery 8년 전 조회 1,802
jQuery 8년 전 조회 1,825
jQuery 8년 전 조회 1,770
jQuery 8년 전 조회 1,458
jQuery 8년 전 조회 1,592
jQuery 8년 전 조회 1,629
jQuery 8년 전 조회 1,541
jQuery 8년 전 조회 2,433
jQuery 8년 전 조회 1,931
PHP 8년 전 조회 3,970
jQuery 8년 전 조회 1,820
jQuery 8년 전 조회 2,112
jQuery 8년 전 조회 1,954
jQuery 8년 전 조회 1,711
jQuery 8년 전 조회 2,385
jQuery 8년 전 조회 1,924
jQuery 8년 전 조회 2,243
jQuery 8년 전 조회 2,029
jQuery 8년 전 조회 2,253
jQuery 8년 전 조회 1,939
jQuery 8년 전 조회 1,721
jQuery 8년 전 조회 1,544
jQuery 8년 전 조회 1,970
jQuery 8년 전 조회 2,596
jQuery 8년 전 조회 1,603
jQuery 8년 전 조회 2,007