When the anchor point part changes, the onhashchange event will be triggered. You can try running the following code to learn how to implement onhashchange event in JavaScript.
<!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>
The above is the detailed content of In JavaScript, what is the purpose of the onhashchange event?. For more information, please follow other related articles on the PHP Chinese website!