"/> ">

Home  >  Article  >  Web Front-end  >  In JavaScript, what is the purpose of the onhashchange event?

In JavaScript, what is the purpose of the onhashchange event?

PHPz
PHPzforward
2023-08-24 19:17:021352browse

In JavaScript, what is the purpose of the onhashchange event?

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.

Example

<!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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete