利用 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中文網其他相關文章!