hash屬性設置或返回URL的錨部分,包括井號(#)。
如果URL沒有片段標識符,則此屬性返回一個空字符串“”。
注意:使用此屬性設置錨點部分時,請勿包括井號(#)。
返回hash屬性:
location.hash
設置哈希屬性:
location.hash = anchorName
var anchor = document.getElementById("myAnchor"); document.querySelector("#output").innerHTML = anchor.hash;測試看看?/?
所有瀏覽器完全支持hash屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
hash | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
anchorName | 字符串指定URL的錨點部分 |
返回值: | 一個字符串,表示URL的錨點部分,包括井號(#) |
---|
設置錨點部分:
var anchor = document.getElementById("myAnchor"); anchor.hash = "newFragement";測試看看?/?
位置參考:location.href屬性
位置參考:location.hostname屬性
位置參考:location.pathname屬性
位置參考:location.protocol屬性