如何使用 JavaScript 重定向到页面
JavaScript 提供了一种简单的方法将用户重定向到与当前页面不同的页面。为此,您可以利用 window.location 属性。
使用 JavaScript 重定向
要重定向到另一个页面,请按照以下步骤操作:
1.将 window.location 属性设置为目标 URL:
window.location = "http://www.yoururl.com";
这行代码将立即将用户重定向到指定的 URL。
示例:
window.location.href = "https://example.com"; // Redirect to "example.com" window.location.assign("https://example.org"); // Also redirect to "example.org" window.location.replace("https://example.net"); // Replaces the current page with "example.net"
注意:
以上是如何使用 JavaScript 重定向到页面?的详细内容。更多信息请关注PHP中文网其他相关文章!