Hi,歡迎訪問前端老白
$.ajax({ url: "example.php", method: "GET", beforeSend: function() { // 在請求發送前,設置時間條的初始值為0 $("#progressbar").attr("value", 0); }, progress: function(e) { if (e.lengthComputable) { // 根據下載進度計算并設置時間條的當前值 var percent = (e.loaded / e.total) * 100; $("#progressbar").attr("value", percent); } }, success: function(response) { // 在請求成功后,隱藏時間條并處理返回的數據 $("#progressbar").hide(); // 處理返回的數據 }, error: function(jqXHR, textStatus, errorThrown) { // 在請求失敗時,隱藏時間條并顯示錯誤信息 $("#progressbar").hide(); console.log("Error: " + textStatus + " " + errorThrown); } });
e.loaded / e.total
獲取用戶列表
$("#getUsersButton").on("click", function() { $.ajax({ url: "example.php", method: "GET", beforeSend: function() { $("#progressbar").attr("value", 0); $("#progressbar").show(); }, progress: function(e) { if (e.lengthComputable) { var percent = (e.loaded / e.total) * 100; $("#progressbar").attr("value", percent); } }, success: function(response) { $("#progressbar").hide(); // 將返回的用戶列表展示在頁面上 }, error: function(jqXHR, textStatus, errorThrown) { $("#progressbar").hide(); console.log("Error: " + textStatus + " " + errorThrown); } }); });
老白網絡 (http://52shenghuonet.cn/) 前端 后端 zblog主題.網站地圖xml