$(".content-short").click(function() {
var ID = $(this).attr('data-id');
$('.loadingmessage').show();
$.ajax({
type: "post",
url: "collegeselect.php",
data: 'ID=' + ID,
dataType: "text",
success: function(response){
$(".content-full").html(response);
$('.loadingmessage').hide();
}
});
});
//collegeselect.php//是用於從數據庫加載數據,//.loadingmessage//爲GIF使用Ajax請求加載GIF
當我使用這個首次它顯示GIF ,但是在第一次點擊後不會顯示gif,因爲檢索到的數據已經可以在前一個ajax請求的內容中獲得, 如何在每次點擊內容短片時顯示它?
Collegeselect是否會返回圖片/ gif或''?您正在請求文本 – mplungjan
對不起,我只是編輯了代碼。 //collegeselect.php//用於從數據庫加載數據,//.loadingmessage//用於gif @mplungjan –
所以你的問題是加載gif沒有顯示? – mplungjan