0
這裏當點擊按鈕時,ajax請求會被調用。如果ajax響應會成功,那麼會顯示alert box並重定向到另一個頁面。Bootstrap Alert當重定向時關閉
我的問題是什麼時候收到成功響應,然後警報顯示正確提示,但當重定向時間提醒框消失。
我想警告框也顯示重定向完成一段時間後,慢慢fadout。
這裏我使用$('.flash_alert').delay(5000).fadeOut("slow");
延遲(5000),我認爲它讓我的警報在重定向後可見但不起作用。
我的代碼
的index.php
<div class="flash_alert">
</div>
<button class="btn btn-success btn-lg" type="button" id="PIDetails-1_btn" name="PIDetails-1_btn">Save</button>
$(document).ready(function() {
$("#PIDetails-1_btn").click(function(){
$.ajax({
url: "ajax.php",
type: 'POST',
dataType : "json",
success: function(response){
$(".flash_alert").html(response.msg).delay(5000).fadeIn();
$('.flash_alert').delay(5000).fadeOut("slow");
if (response.status == "success") {
window.location.href = "success.php";
}
else {
}
},
error : function(XMLHttpRequest, textStatus, errorThrown) {
window.location.reload();
},
});
});
});
ajax.php
$data1['status'] = "success";
$data1['msg'] = '<div class="alert alert-success fade in"><a href="#" data-dismiss="alert" class="close">×</a><h5> Successfully Saved. </div>';
echo json_encode($data1);
我需要幫助
重定向加載了一個沒有提示的新頁面。我會立即重定向並在success.php頁面上顯示警報(並將其淡入)。 – Sim