0
我目前正在重定向到成功的主頁,基於成功我希望使頁面在重定向發生之前等待30或50秒,並且我希望在發生500內部錯誤消息時等待檢查。在轉發到另一個頁面之前,如何讓頁面等待?
$(function() {
$("#save").click(function() {
$.ajax({
type: "POST",
url: "cng.json",
data: json_data,
contentType : 'application/json',
success: function(data, textStatus, xhr) {
console.log(arguments);
console.log(xhr.status);
alert("Your changes are being submitted: "+ textStatus +" : "+ xhr.status);
//modal window message
$('<div id="loading">Loading...</div>').insertBefore('#myform');
// add code here to wait for 30 sec before redirecting and check for 500 error code
location.reload(true);
},
error:function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText+" - " +errorThrown + " : " +jqXHR.status);
}
});
});
});
您的代碼縮進樣式是否遵循任何邏輯規則,還是隻是隨機的? ':P' –