그 쪽이 맞는 거 같아요. 이 방법은 너무 전역 적입니다 ...
그러나 AJAX 호출이 페이지 자체에 영향을 미치지 않는 경우에 좋은 기본값입니다. (예를 들어 배경 저장). ( "global": false를 전달하여 특정 ajax 호출에 대해 항상 끌 수 있습니다.- jquery의 설명서를 참조하십시오.
AJAX 호출이 페이지의 일부를 새로 고치려는 경우 "로드 중"이미지가 새로 고친 섹션에만 적용되는 것을 좋아합니다. 어느 부분이 새로 고쳐 졌는지보고 싶습니다.
단순히 다음과 같이 쓸 수 있다면 얼마나 멋진 지 상상해보십시오.
$("#component_to_refresh").ajax( { ... } );
그리고이 섹션에 "로드 중"이 표시됩니다. 아래는 필자가 작성한 "로드"디스플레이를 처리하는 함수이지만 ajax에서 새로 고치는 영역에 따라 다릅니다.
먼저 사용법을 보여 드리겠습니다
<!-- assume you have this HTML and you would like to refresh
it / load the content with ajax -->
<span id="email" name="name" class="ajax-loading">
</span>
<!-- then you have the following javascript -->
$(document).ready(function(){
$("#email").ajax({'url':"/my/url", load:true, global:false});
})
그리고 이것은 당신이 원하는대로 향상시킬 수있는 기본 시작 기능입니다. 매우 유연합니다.
jQuery.fn.ajax = function(options)
{
var $this = $(this);
debugger;
function invokeFunc(func, arguments)
{
if ( typeof(func) == "function")
{
func( arguments ) ;
}
}
function _think( obj, think )
{
if ( think )
{
obj.html('<div class="loading" style="background: url(/public/images/loading_1.gif) no-repeat; display:inline-block; width:70px; height:30px; padding-left:25px;"> Loading ... </div>');
}
else
{
obj.find(".loading").hide();
}
}
function makeMeThink( think )
{
if ( $this.is(".ajax-loading") )
{
_think($this,think);
}
else
{
_think($this, think);
}
}
options = $.extend({}, options); // make options not null - ridiculous, but still.
// read more about ajax events
var newoptions = $.extend({
beforeSend: function()
{
invokeFunc(options.beforeSend, null);
makeMeThink(true);
},
complete: function()
{
invokeFunc(options.complete);
makeMeThink(false);
},
success:function(result)
{
invokeFunc(options.success);
if ( options.load )
{
$this.html(result);
}
}
}, options);
$.ajax(newoptions);
};