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

· 8년 전 · 1421

제이쿼리 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,114
PHP 8년 전 조회 7,118
jQuery 8년 전 조회 2,745
jQuery 8년 전 조회 1,781
jQuery 8년 전 조회 1,860
jQuery 8년 전 조회 1,974
jQuery 8년 전 조회 1,479
jQuery 8년 전 조회 2,059
jQuery 8년 전 조회 1,818
jQuery 8년 전 조회 2,020
jQuery 8년 전 조회 2,148
jQuery 8년 전 조회 1,769
jQuery 8년 전 조회 1,788
jQuery 8년 전 조회 1,738
jQuery 8년 전 조회 1,422
jQuery 8년 전 조회 1,566
jQuery 8년 전 조회 1,602
jQuery 8년 전 조회 1,515
jQuery 8년 전 조회 2,406
jQuery 8년 전 조회 1,892
PHP 8년 전 조회 3,936
jQuery 8년 전 조회 1,793
jQuery 8년 전 조회 2,083
jQuery 8년 전 조회 1,929
jQuery 8년 전 조회 1,690
jQuery 8년 전 조회 2,360
jQuery 8년 전 조회 1,898
jQuery 8년 전 조회 2,211
jQuery 8년 전 조회 1,993
jQuery 8년 전 조회 2,227