我有此腳本:加載圖像隨着AJAX(jQuery的)
$.ajax({
type: "GET",
url: '/get.php?id=' + c + '&type=1',
dataType: "html"
}).done(function (a) {
$(".playerr:eq(" + b + ")").html(a).show()
});
我怎樣才能添加加載圖像?
我有此腳本:加載圖像隨着AJAX(jQuery的)
$.ajax({
type: "GET",
url: '/get.php?id=' + c + '&type=1',
dataType: "html"
}).done(function (a) {
$(".playerr:eq(" + b + ")").html(a).show()
});
我怎樣才能添加加載圖像?
您可以使用beforeSend
和success
或進行顯示和隱藏加載圖像
$.ajax({
type: "GET",
url: '/get.php?id=' + c + '&type=1',
dataType: "html"
}).done(function (a) {
$(".playerr:eq(" + b + ")").html(a).show();
$("#img1").hide();
}).beforeSend(function(){
$("#img1").show();
});
我的整個功能是這樣的:var PML = -1;函數showpl(b,c,d){if(pml!= -1)$(「。playerr:eq(」+ pml +「)」)。html('')。hide(); var b = $(「。」+ d).index(b); $ .ajax({type:「GET」, url:'/get.php?id='+ c +'&type = 1', dataType:「html」 })。done(function(a) {(「。playerr:eq(」+ b +「)」)。html(a).show() }); pml = b; 返回false } –