HTML DOM hash 属性
定义和用法
hash 属性是一个可读可写的字符串,该字符串是 URL 的锚部分(从 # 号开始的部分)。
语法
location.hash=anchorname
实例
假设当前的 URL 是: http://example.com:1234/test.htm#part2:
<html>
<body>
<script type="text/javascript">
document.write(location.hash
);
</script>
</body>
</html>
输出:
#part2
TIY
- 使用 location 对象的 hash 属性
- 锚的数组
- 本例打开两个窗口。第一个窗口中包含四个按钮。第二个窗口定义了四个锚。当点击第一个窗口中的某个按钮时,onclick 事件句柄会到达第二个窗口指定的锚。