私はこのスクリプトを持っています:
$.ajax({
type: "GET",
url: '/get.php?id=' + c + '&type=1',
dataType: "html"
}).done(function (a) {
$(".playerr:eq(" + b + ")").html(a).show()
});
読み込み中の画像を追加するにはどうすればよいですか?
beforeSend
andまたは done を使用し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();
});