觸發(fā) onhashchange
屬性事件當(dāng)URL哈希改變時(shí)。
URL哈希是以當(dāng)前URL的“?!狈?hào)開(kāi)始的錨部分。
對(duì)于以下URL
http://www.example.com/test.htm#myHash
此網(wǎng)址的錨定部分為 #myHash
。
我們可以通過(guò)設(shè)置 location.hash
來(lái)更改錨點(diǎn)散列或 Location
對(duì)象中的 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>
更多建議: