📌  相关文章
📜  如何重定向到另一个网页 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:45.009000             🧑  作者: Mango

代码示例1
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";

// Another method for doing redirecting with JavaScript is this:
window.location = "https://stackoverflow.com";