제이쿼리 callbacks.has ([callback])

· 8년 전 · 1456

제이쿼리 callbacks.has ([callback])


설명 : 목록에 콜백이 첨부되어 있는지 확인하십시오. 콜백이 인수로 제공되면 목록에 있는지 여부를 확인하십시오.


예:

callbacks.has()콜백 목록에 특정 콜백이 포함되어 있는지 확인하는 데 사용 합니다.



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

var foo = function( value1, value2 ) {

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

};

 

// A second function which will not be added to the list

var bar = function( value1, value2 ) {

  console.log( "foobar" );

};

 

var callbacks = $.Callbacks();

 

// Add the log method to the callbacks list

callbacks.add( foo );

 

// Determine which callbacks are in the list

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

// true

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

// false

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
jQuery
[jQuery]
8년 전 조회 2,138
PHP 8년 전 조회 7,146
jQuery 8년 전 조회 2,775
jQuery 8년 전 조회 1,803
jQuery 8년 전 조회 1,884
jQuery 8년 전 조회 2,003
jQuery 8년 전 조회 1,501
jQuery 8년 전 조회 2,090
jQuery 8년 전 조회 1,851
jQuery 8년 전 조회 2,048
jQuery 8년 전 조회 2,178
jQuery 8년 전 조회 1,801
jQuery 8년 전 조회 1,823
jQuery 8년 전 조회 1,769
jQuery 8년 전 조회 1,457
jQuery 8년 전 조회 1,591
jQuery 8년 전 조회 1,627
jQuery 8년 전 조회 1,538
jQuery 8년 전 조회 2,431
jQuery 8년 전 조회 1,930
PHP 8년 전 조회 3,968
jQuery 8년 전 조회 1,818
jQuery 8년 전 조회 2,109
jQuery 8년 전 조회 1,952
jQuery 8년 전 조회 1,711
jQuery 8년 전 조회 2,385
jQuery 8년 전 조회 1,923
jQuery 8년 전 조회 2,243
jQuery 8년 전 조회 2,027
jQuery 8년 전 조회 2,252