如何在提交表单时重定向
这个问题在这里已经有了答案:
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