Location hash 屬性

定義和用法
hash 屬性是一個可讀可寫的字符串,該字符串是 URL 的錨部分(從 # 號開始的部分)。
語法
location.hash
瀏覽器支持
所有主要瀏覽器都支持 hash 屬性
實例
實例
返回一個URL的主要部分。假設(shè)當前的URL是//www.o2fo.com/test.htm#PART2:
<script>
document.write(location.hash);
</script>
document.write(location.hash);
</script>
以上實例輸出結(jié)果:
#part2

更多建議: