触发 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>
Click to view the demo
HTML事件属性onblur触发 onblur 属性当元素失去焦点。HTML5中的新功能没有。句法element onblur="script"支持的标签所有HTML元素...
HTML全局属性contenteditable contenteditable 属性是HTML5中的新特性允许用户更改页面中的内容。以下示例显示如何使用 contente...
HTML data-* 属性 HTML 全局属性实例使用 data-* 属性来嵌入自定义数据:ulli data-animal-type="bird"Owl/lilidata-animal-type...
HTML canvas textBaseline 属性 HTML canvas 参考手册实例在 y=100 处绘制一条红线,然后在 y=100 处用不同的 textBaseline 值放...
HTML 音频/视频 DOM controls 属性HTML 音频/视频 DOM 参考手册实例为视频启动控件:myVid=document.getElementById("video1");m...