728x90
.post()나 .get() 대신 .ajax()를 사용하여 property에 async:false 를 주는 수도 있지만,
애초에 jQuery의 ajaxSetup 옵션을 변경하여 처리할수도 있다고 한다.
제보자 : OZ6th 김광수형님
출처 : http://stackoverflow.com/questions/133310/how-can-i-get-jquery-to-perform-a-synchronous-rather-than-asynchronous-ajax-req
애초에 jQuery의 ajaxSetup 옵션을 변경하여 처리할수도 있다고 한다.
You can put the JQuery's AJAX setup in synchronous mode by calling
jQuery.ajaxSetup({async:false});
and then perform your ajax calls using jQuery.get( ... );
then just turning it on again once
jQuery.ajaxSetup({async:true});
I guess it works out the same thing as suggested by @Adam but might be helpful to someone that does want to reconfigure their jQuery.get() or jQuery.post() to the more elaborate jQuery.ajax() syntax제보자 : OZ6th 김광수형님
출처 : http://stackoverflow.com/questions/133310/how-can-i-get-jquery-to-perform-a-synchronous-rather-than-asynchronous-ajax-req
'내가 자꾸 까먹어서 쓰는 개발 이야기 > jQuery' 카테고리의 다른 글
ajaxSetup() 메서드 (0) | 2012.12.12 |
---|---|
PHP에서 jQuery로 JSON 배열 받아 사용하기 (0) | 2012.08.13 |
Select Box 활용 노하우 (0) | 2011.03.10 |
jQuery 까먹기 쉬운것들 (0) | 2010.12.06 |
[jQuery] checkbox 전체선택/전체해제 (0) | 2010.09.08 |
최근댓글