0

私はこのスクリプトを持っています:

$.ajax({
    type: "GET",
    url: '/get.php?id=' + c + '&type=1',
    dataType: "html"
}).done(function (a) {
    $(".playerr:eq(" + b + ")").html(a).show()
});

読み込み中の画像を追加するにはどうすればよいですか?

4

1 に答える 1

1

beforeSendandまたは 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();
});
于 2013-08-19T11:40:47.300 に答える