7_历史管理hash.html 685 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <!-- hash -->
  10. <button id="btn">点击我</button>
  11. <script>
  12. // 获取元素
  13. var btn = document.getElementById("btn");
  14. // 绑定事件
  15. btn.onclick = function(){
  16. // 点击按钮后,改变hash值
  17. var ran = Math.random();
  18. location.hash = "#"+ran;
  19. }
  20. // 监听hash值变化 onhashchange
  21. window.onhashchange = function(){
  22. console.log(location.hash);
  23. }
  24. </script>
  25. </body>
  26. </html>