HTML事件屬性onhashchange
HTML事件屬性onhashchange
觸發(fā)onhashchange
屬性事件當(dāng)URL哈希改變時(shí)。
URL哈希是以當(dāng)前URL的“#”符號(hào)開始的錨部分。
對(duì)于以下URL
http://www.example.com/test.htm#myHash
此網(wǎng)址的錨定部分為#myHash
。
我們可以通過設(shè)置location.hash
來更改錨點(diǎn)散列或Location
對(duì)象中的location.href
屬性。
HTML5中的新功能
onhashchange
屬性是HTML5中的新特性。
句法
<element onhashchange="script or Javascript function name">
支持的標(biāo)簽
<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>
Click to view the demo