Location hash 屬性
Location 對(duì)象定義和用法
hash 屬性是一個(gè)可讀可寫的字符串,該字符串是 URL 的錨部分(從 # 號(hào)開始的部分)。
語(yǔ)法
location.hash
瀏覽器支持
所有主要瀏覽器都支持 hash 屬性
實(shí)例
實(shí)例
返回一個(gè)URL的主要部分。假設(shè)當(dāng)前的URL是//hgci.cn/test.htm#PART2:
<script>
document.write(location.hash);
</script>
document.write(location.hash);
</script>
以上實(shí)例輸出結(jié)果:
#part2
Location 對(duì)象
更多建議: