gpt4 book ai didi

javascript - jQuery/Ajax - 成功消息后重定向到另一个页面

转载 作者:行者123 更新时间:2023-11-28 07:29:08 24 4
gpt4 key购买 nike

我想在填写联系表单后重定向用户并显示成功消息。

这是 HTML 代码:

<div id="wpm_download_1" style="display: inline;">
The link to the file(s) has been emailed to you.
</div>

这是我正在尝试的 JavaScript:

function() { 
var isDownloaded = jQuery('#wpm_download_1').text();
if (typeof obj.isDownloaded != 'undefined'){
window.location = 'http://google.com';
}

}

基本上,我想在通过 AJAX 发送表单数据后出现此消息时重定向用户:

文件链接已通过电子邮件发送给您..

最佳答案

好吧,经过努力,我想到了这个,它成功了:

jQuery( document ).ajaxSuccess(function( event, xhr, settings ) {
window.location.href = 'http://google.com';
});

因为,我想在 successful AJAX request 之后重定向做完了。

关于javascript - jQuery/Ajax - 成功消息后重定向到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29302905/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com