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

· 2017-08-15 (화) 22:54:22 · 1698

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

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-27 조회 2,059
jQuery 17-08-27 조회 2,195
jQuery 17-08-25 조회 2,051
jQuery 17-08-25 조회 2,080
jQuery 17-08-25 조회 2,278
jQuery 17-08-24 조회 1,798
jQuery 17-08-24 조회 2,579
jQuery 17-08-24 조회 2,020
jQuery 17-08-23 조회 2,236
jQuery 17-08-23 조회 2,251
jQuery 17-08-23 조회 2,478
jQuery 17-08-22 조회 2,419
jQuery 17-08-22 조회 1,917
jQuery
[jQuery]
17-08-22 조회 2,392
PHP 17-08-21 조회 7,400
jQuery 17-08-20 조회 3,043
jQuery 17-08-20 조회 2,061
jQuery 17-08-20 조회 2,118
jQuery 17-08-18 조회 2,264
jQuery 17-08-18 조회 1,741
jQuery 17-08-18 조회 2,348
jQuery 17-08-17 조회 2,101
jQuery 17-08-17 조회 2,302
jQuery 17-08-17 조회 2,431
jQuery 17-08-16 조회 2,037
jQuery 17-08-16 조회 2,048
jQuery 17-08-16 조회 2,016
jQuery 17-08-15 조회 1,699
jQuery 17-08-15 조회 1,867
jQuery 17-08-15 조회 1,877