제이쿼리 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
게시글 목록
| 번호 | 제목 |
|---|---|
| 15819 |
jQuery
제이쿼리 jQuery( ":button" )
|
| 15818 | |
| 15817 | |
| 15816 | |
| 15815 | |
| 15814 | |
| 15813 | |
| 15812 | |
| 15811 | |
| 15810 | |
| 15809 |
jQuery
제이쿼리 .attr (attributeName)
|
| 15808 |
jQuery
제이쿼리 .appendTo( target )
|
| 15807 | |
| 15806 |
jQuery
animated selector
|
| 15805 | |
| 15804 |
jQuery
제이쿼리 andSelf()
|
| 15803 |
jQuery
제이쿼리 all selector
|
| 15802 |
jQuery
제이쿼리 .ajaxSuccess(handler)
|
| 15801 |
jQuery
.ajaxStop(handler )
|
| 15800 |
jQuery
.ajaxStart(handler )
|
| 15799 |
jQuery
.ajaxSend (handler )
|
| 15798 |
jQuery
제이쿼리 .ajaxError (handler)
|
| 15797 |
jQuery
제이쿼리 .ajaxComplete (handler)
|
| 15796 |
jQuery
제이쿼리 .after()
|
| 15792 | |
| 15791 |
jQuery
제이쿼리 .addBack ()
|
| 15790 |
jQuery
제이쿼리 .add (selector)
|
| 15789 | |
| 15788 | |
| 15787 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기