アンカーポイント部分が変更されると、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 中国語 Web サイトの他の関連記事を参照してください。