触发 onhashchange
属性事件当URL哈希改变时。
URL哈希是以当前URL的“#”符号开始的锚部分。
对于以下URL
http://www.example.com/test.htm#myHash
此网址的锚定部分为 #myHash
。
我们可以通过设置 location.hash
来更改锚点散列或 Location
对象中的 location.href
属性。
onhashchange
属性是HTML5中的新特性。
<element onhashchange="script or Javascript function name">
<body>
onhashchange |
Yes | 8.0 | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body onhashchange="myFunction()">
<button onclick="changePart()">Click me to change the hash</button>
<script>
function changePart() {
location.hash = "part5";
alert("The anchor part is now: " + location.hash);
}
function myFunction() {
alert("The anchor part has changed!");
}
</script>
</body>
</html>