js 浏览器HTML DOM hash 属性

hash 属性是一个可读可写的字符串,该字符串是 URL 的锚部分(从 # 号开始的部分)

假设当前的 URL 是: http://example.com:1234/test.htm#part2:

<html>
<body>

<script type="text/javascript">
document.write(location.hash);
</script>

</body>
</html>

输出:

#part2



你可能感兴趣的:(js 浏览器HTML DOM hash 属性)