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

这是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发送表单数据后出现此消息时重定向用户:

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

最佳答案

为什么使用obj.isDownloaded?
在这里工作:

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


由您决定何时需要调用该函数

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

10-12 07:22