제이쿼리 callbacks.disable ()

· 8년 전 · 1813

제이쿼리 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,085
jQuery 8년 전 조회 1,844
jQuery 8년 전 조회 2,045
jQuery 8년 전 조회 2,175
jQuery 8년 전 조회 1,798
jQuery 8년 전 조회 1,818
jQuery 8년 전 조회 1,765
jQuery 8년 전 조회 1,449
jQuery 8년 전 조회 1,586
jQuery 8년 전 조회 1,624
jQuery 8년 전 조회 1,534
jQuery 8년 전 조회 2,428
jQuery 8년 전 조회 1,922
PHP 8년 전 조회 3,968
jQuery 8년 전 조회 1,814
jQuery 8년 전 조회 2,101
jQuery 8년 전 조회 1,950
jQuery 8년 전 조회 1,707
jQuery 8년 전 조회 2,378
jQuery 8년 전 조회 1,918
jQuery 8년 전 조회 2,236
jQuery 8년 전 조회 2,018
jQuery 8년 전 조회 2,249
jQuery 8년 전 조회 1,934
jQuery 8년 전 조회 1,717
jQuery 8년 전 조회 1,536
jQuery 8년 전 조회 1,966
jQuery 8년 전 조회 2,593
jQuery 8년 전 조회 1,596
jQuery 8년 전 조회 1,997