當錨點部分改變時,onhashchange事件會觸發。您可以嘗試執行以下程式碼來學習如何在JavaScript中實作onhashchange事件。
<!DOCTYPE html> <html> <body onhashchange="newFunc"> <button onclick="functionChange()">Click to change anchor</button> <script> function functionChange() { location.hash = "about"; var hash = location.hash; document.write("The anchor part is now: " + hash); } // If the achor part is changed function newFunc() { alert("Anchor part changed!"); } </script> </body> </html>
以上是在JavaScript中,onhashchange事件的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!