我试图在将用户重定向到另一个页面之前显示成功通知。我正在使用带有 jQuery 1.7 的 Apprise 插件。问题是它重定向而不显示通知。如果我取出重定向,则通知将完美运行。谢谢你的帮助。
$.ajax({
type:"POST",
url:"create/process_vote.php",
data: { answerid: aid },
success: function(){
$(".status").text('Thank you for voting!');
$(".status").fadeIn("slow");
$(".status").delay(2000).fadeOut(1000);
window.location.href = "results.php?id=" + aid;
}
});