제이쿼리 callbacks.has ([callback])
제이쿼리 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에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4856 | PHP | 7년 전 | 5731 | ||
| 4855 | jQuery | 7년 전 | 3235 | ||
| 4854 | jQuery | 7년 전 | 2226 | ||
| 4853 | jQuery | 7년 전 | 2827 | ||
| 4852 | MySQL | 7년 전 | 2993 | ||
| 4851 | jQuery | 7년 전 | 2339 | ||
| 4850 | jQuery | 7년 전 | 2569 | ||
| 4849 | jQuery | 7년 전 | 4308 | ||
| 4848 | PHP |
|
7년 전 | 4246 | |
| 4847 | jQuery | 7년 전 | 4019 | ||
| 4846 | jQuery | 7년 전 | 2631 | ||
| 4845 | jQuery | 7년 전 | 2151 | ||
| 4844 | jQuery | 7년 전 | 2300 | ||
| 4843 | jQuery | 7년 전 | 3054 | ||
| 4842 | jQuery | 7년 전 | 2898 | ||
| 4841 | jQuery | 7년 전 | 2229 | ||
| 4840 | jQuery | 7년 전 | 1567 | ||
| 4839 | jQuery | 7년 전 | 2467 | ||
| 4838 | jQuery |
이에스씨코리아
|
7년 전 | 2314 | |
| 4837 | jQuery | 7년 전 | 2162 | ||
| 4836 | jQuery | 7년 전 | 2087 | ||
| 4835 | jQuery | 7년 전 | 1821 | ||
| 4834 | jQuery | 7년 전 | 1865 | ||
| 4833 | jQuery | 7년 전 | 1993 | ||
| 4832 | jQuery | 7년 전 | 2184 | ||
| 4831 | jQuery | 7년 전 | 2364 | ||
| 4830 | jQuery | 7년 전 | 2630 | ||
| 4829 | jQuery | 7년 전 | 1802 | ||
| 4828 | jQuery | 8년 전 | 2745 | ||
| 4827 | jQuery | 8년 전 | 2285 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기