--- title: URL.hash slug: Web/API/URL/hash tags: - API - Hash - URL translation_of: Web/API/URL/hash ---
{{ APIRef("URL API") }}

{{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")}}

参考