我实际上是通过 ajax 从服务器获取数据,所以在成功获取数据后我重定向到相同的屏幕/url,我需要在重定向后显示/显示一个 div?在 jquery 中可以这样吗?
$.ajax({
type: "POST",
url: action,
data: form_data,
success: function (response) {
if (response.status == 'undone') {
$('#paypal_email_error').html(response.errors.paypal_email);
$('.er_msg').show();
}
if (response.status == 'done') {
window.location = '/accounts/email/';
$('.show_this').show();
}
}
});
});
模板.html
<div class="alert alert-error hide show_this">
<li>Saved Email successfully </li>
</div>