利用 jQuery 或纯 JavaScript,可以将用户无缝重定向到另一个网页。
尽管 jQuery 很受欢迎,但不推荐用于执行重定向。
window.location.replace() 有效地模仿 HTTP 重定向。它优于 window.location.href,因为它:
Redirect Method | Behavior |
---|---|
location.href | Simulates clicking on a link |
location.replace | Simulates an HTTP redirect |
使用 window.location.replace() 进行重定向:
// Redirect to example.com window.location.replace("https://example.com");
以上是如何使用 JavaScript 将用户重定向到不同的网页?的详细内容。更多信息请关注PHP中文网其他相关文章!