--- title: URL.hash slug: Web/API/URL/hash tags: - API - Hash - URL translation_of: Web/API/URL/hash ---
{{domxref("URL")}} 接口的 hash
属性返回一个 {{domxref("USVString")}},其中会包含URL标识中的 '#'
和 fragment 标识符(fragment 即我们通常所说的 URL hash)。
这里 fragment 不会经过百分比编码(URL编码)。如果 URL 中没有 fragment,该属性会包含一个空字符串 —— ""
.
{{AvailableInWorkers}}
string = object.hash; object.hash = string;
{{domxref("USVString")}}.
var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/href#Examples'); url.hash // Returns '#Examples'
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-hash', 'URL.hash')}} | {{Spec2('URL')}} | Initial definition |
{{Compat("api.URL.hash")}}