举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > HTML事件属性onhashchange

HTML事件属性onhashchange

2023-06-11 22:18 HTML参考手册

 HTML事件属性onhashchange

HTML事件属性onhashchange


触发 onhashchange 属性事件当URL哈希改变时。

URL哈希是以当前URL的“#”符号开始的锚部分。

对于以下URL

http://www.example.com/test.htm#myHash

此网址的锚定部分为 #myHash

我们可以通过设置 location.hash 来更改锚点散列或 Location 对象中的 location.href 属性。

HTML5中的新功能

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>

Click to view the demo



阅读全文
以上是编程学为你收集整理的 HTML事件属性onhashchange全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部