简体   繁体   English

表单提交后5秒html重定向到主页

[英]html redirect to homepage 5 seconds after form submission

I am looking to redirect the form submission page back to my home page after 5 seconds.我希望在 5 秒后将表单提交页面重定向回我的主页。 I know there is a way to do this with the meta tag, but this form was created a little different to me.我知道有一种方法可以用元标记来做到这一点,但是这个表单的创建对我来说有点不同。 The exact form that i am using is from http://reusableforms.com/d/b/php-contact-form-with-validation-and-recaptcha我使用的确切表格来自http://reusableforms.com/d/b/php-contact-form-with-validation-and-recaptcha

any advice will be appreciated.任何建议将被认真考虑。

Thanks, The New Guy谢谢,新人

try like this this redirects to home page after successful submission of form像这样尝试在成功提交表单后重定向到主页

        $.ajax({
            type: "POST",
            url: 'handler.php',
            data: $form.serialize(),
            success: function(){
                     setTimeout(function() {
                     window.location.href = 'http://www.example.com/';
                        }, 5000);
        },
            dataType: 'json'
        });
window.setTimeout(function() {
    window.location.href = 'http://www.google.com';
}, 5000);

Will work excellent especially if you do your submission with javascript/jquery as well.将工作得很好,特别是如果您也使用 javascript/jquery 提交。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM