在 JavaScript 中 onhashchange 事件的使用是什么?
当锚点部分发生改变时,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>
广告