回答:
もちろん、リクエストを行う前に表示し、完了後に非表示にすることもできます。
$('#loading-image').show();
$.ajax({
url: uri,
cache: false,
success: function(html){
$('.info').append(html);
},
complete: function(){
$('#loading-image').hide();
}
});
私は通常、それをグローバルajaxStartイベントとajaxStopイベントにバインドする、より一般的なソリューションを好みます。そうすれば、すべてのajaxイベントに表示されます。
$('#loading-image').bind('ajaxStart', function(){
$(this).show();
}).bind('ajaxStop', function(){
$(this).hide();
});
ajaxオブジェクトのbeforeSend関数とcomplete関数を使用します。beforeSendの内側からgifを表示して、すべての動作が単一のオブジェクトにカプセル化されるようにすることをお勧めします。成功関数を使用してgifを非表示にする場合は注意してください。リクエストが失敗した場合でも、おそらくgifを非表示にする必要があります。これを行うには、Complete関数を使用します。次のようになります。
$.ajax({
url: uri,
cache: false,
beforeSend: function(){
$('#image').show();
},
complete: function(){
$('#image').hide();
},
success: function(html){
$('.info').append(html);
}
});
HTMLコード:
<div class="ajax-loader">
<img src="{{ url('guest/images/ajax-loader.gif') }}" class="img-responsive" />
</div>
CSSコード:
.ajax-loader {
visibility: hidden;
background-color: rgba(255,255,255,0.7);
position: absolute;
z-index: +100 !important;
width: 100%;
height:100%;
}
.ajax-loader img {
position: relative;
top:50%;
left:50%;
}
JQUERYコード:
$.ajax({
type:'POST',
beforeSend: function(){
$('.ajax-loader').css("visibility", "visible");
},
url:'/quantityPlus',
data: {
'productId':p1,
'quantity':p2,
'productPrice':p3},
success:function(data){
$('#'+p1+'value').text(data.newProductQuantity);
$('#'+p1+'amount').text("₹ "+data.productAmount);
$('#totalUnits').text(data.newNoOfUnits);
$('#totalAmount').text("₹ "+data.newTotalAmount);
},
complete: function(){
$('.ajax-loader').css("visibility", "hidden");
}
});
}
Ajaxコール中に一般的に表示される「イメージ」はアニメーションGIFです。ajaxリクエストの完了率を判断する方法がないため、使用されるアニメーションgifは不確定なスピナーです。これは、さまざまなサイズの円のボールのように繰り返し繰り返される画像です。独自のカスタム不確定スピナーを作成するのに適したサイトは、http://ajaxload.info/です。
$ .ajax呼び出しが大量にある場合は、これがより良いと思います
$(document).ajaxSend(function(){
$(AnyElementYouWantToShowOnAjaxSend).fadeIn(250);
});
$(document).ajaxComplete(function(){
$(AnyElementYouWantToShowOnAjaxSend).fadeOut(250);
});
注意:
CSSを使用する場合。ajaxがバックエンドコードからデータをフェッチしているときに表示する要素は、次のようにする必要があります。
AnyElementYouWantToShowOnAjaxSend {
position: fixed;
top: 0;
left: 0;
height: 100vh; /* to make it responsive */
width: 100vw; /* to make it responsive */
overflow: hidden; /*to remove scrollbars */
z-index: 99999; /*to make it appear on topmost part of the page */
display: none; /*to make it visible only on fadeIn() function */
}
私はいつもBlockUI
プラグインが好きでした:http : //jquery.malsup.com/block/
Ajaxリクエストの実行中に、ページの特定の要素、またはページ全体をブロックできます。
ajax開始イベントと完了イベントを追加できます。これは、ボタンイベントをクリックしたときに機能します
$(document).bind("ajaxSend", function () {
$(":button").html('<i class="fa fa-spinner fa-spin"></i> Loading');
$(":button").attr('disabled', 'disabled');
}).bind("ajaxComplete", function () {
$(":button").html('<i class="fa fa-check"></i> Show');
$(":button").removeAttr('disabled', 'disabled');
});
次に、ajaxのすぐ上のjquery show element関数を使用してそれを表示します。
$('#example_load').show();
$.ajax({
type: "POST",
data: {},
url: '/url',
success: function(){
// Now hide the load element
$('#example_load').hide();
}
});
**strong text**Set the Time out to the ajax calls
function testing(){
$("#load").css("display", "block");
setTimeout(function(){
$.ajax({
type: "GET",
url:testing.com,
async: false,
success : function(response){
alert("connection established");
},
complete: function(){
alert("sended");
$("#load").css("display", "none");
},
error: function(jqXHR, exception) {
alert("Write error Message Here");
},
});
},5000);
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
<div id="load" style="display: none" class="loader"></div>
<input type="button" onclick="testing()" value="SUBMIT" >
document
のみをアタッチする必要があります。stackoverflow.com/questions/2275342/…を