在表单提交后重定向同一页面

时间:2015-07-16 08:40:45

标签: javascript html forms

我的网页Index.html中有一个表单。当我提交表单时,它会重定向到操作页面。

我希望在完成操作后页面重定向到自身(index.html)。

postRegistrationHandler: function(account, req, res, next) {
    account.getCustomData(function(err, data) {
        if (err)
            return next(err);

        data.mongo_id = '54aabc1c79f3e058eedcd2a7';
        data.save(next);
    });
},

2 个答案:

答案 0 :(得分:0)

目前,您的提交将向mailfunc.php发送POST请求,您的表单数据(最有可能)将在此处理。

您可以使用一些Javascript代码(例如:

)轻松地从mailfunc.php转发到index.html
window.location.href = 'index.html';

答案 1 :(得分:0)

您可以将mailfunc.php中的脚本重定向到index.html,如下所示:

header("Location: index.html");
exit();