我有以下的jQuery的Ajax調用:顯示「加載」的形象時,AJAX調用正在進行
$.ajax({
type: "POST",
url: "addtobasket.php",
data: "sid=<?= $sid ?>&itemid=" + itemid + "&boxsize=" + boxsize + "&ext=" + extraval,
success: function(msg){
$.post("preorderbasket.php", { sid: "<?= $sid ?>", type: "pre" },
function(data){
$('.preorder').empty();
$('.preorder').append(data);
});
}
});
我要顯示的圖像時,Ajax調用正在進行中。我怎樣才能做到這一點?
感謝,
[查看加載圖像,而$就執行(http://stackoverflow.com/questions/4684722/show-loading-image-while-ajax-is-performed)的可能重複 – AXMIM