如果可以将加载进度(即 67%)添加到我的 AJAX url fetch 中,我是否可以添加到下面的代码中?:
function update() {
$("#notice_div").html('<font color="yellow">Henter data fra <?php echo $storeName; ?>..');
$.ajax({
type: 'GET',
url: 'getOrders.php?gs=<?php echo $_SESSION['store'] ?>',
timeout: 2000,
success: function(data) {
$("#orders").html(data);
$("#notice_div").html('<font color="green">OK</font>');
window.setTimeout(update, 10000);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
$("#notice_div").html('<font color="red">Det lykkedes ikke at kontakte server..</font>');
window.setTimeout(update, 60000);
}
});
}
一边说“Henter data fra: ... (67%)”等
提前致谢