如何在提交表单时重定向

这个问题在这里已经有了答案:

  • 如何使用JavaScript重定向? [复制] 6个回答

  • if (status === "success") {
      window.location = 'https://google.com';
    }
    

    一些重定向页面的方法:

    //设置当前窗口的新位置。

    window.location = "http://www.google.com";
    

    //为当前窗口设置新的href(URL)。

    window.location.href = "http://www.google.com";
    

    //为当前窗口分配一个新的URL。

    window.location.assign("http://www.google.com");
    

    //用新的窗口替换当前窗口的位置。

    window.location.replace("http://www.google.com");
    
    链接地址: http://www.djcxy.com/p/34727.html

    上一篇: How to have form redirect on submit

    下一篇: Redirect stderr and stdout in Bash