aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/url/hash/index.html
blob: e84ba5251eb394d0d76675e60f375eb254f3d66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: URL.hash
slug: Web/API/URL/hash
tags:
  - API
  - Hash
  - URL
translation_of: Web/API/URL/hash
---
<div>{{ APIRef("URL API") }}</div>

<p><span class="seoSummary">{{domxref("URL")}} 接口的 <strong><code>hash</code></strong> 属性返回一个 {{domxref("USVString")}},其中会包含URL标识中的 <code>'#'</code> 和 fragment 标识符(fragment 即我们通常所说的 URL hash)。</span></p>

<p>这里 fragment 不会经过<a href="/en-US/docs/Glossary/percent-encoding">百分比编码</a>(URL编码)。如果 URL 中没有 fragment,该属性会包含一个空字符串 —— <code>""</code>.</p>

<p>{{AvailableInWorkers}}</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox"><em>string</em> = <em>object</em>.hash;
<em>object</em>.hash = <em>string</em>;
</pre>

<h3 id="返回值">返回值</h3>

<p>{{domxref("USVString")}}.</p>

<h2 id="示例">示例</h2>

<pre class="brush: html">var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/href#Examples');
url.hash // Returns '#Examples'</pre>

<h2 id="详情">详情</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('URL', '#dom-url-hash', 'URL.hash')}}</td>
   <td>{{Spec2('URL')}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>

<div class="hidden">本页面的兼容性表格是由结构化数据生成的。如果你愿意为这些数据做点贡献,请在 github <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 检出代码,然后发送 pull request 给我们。</div>

<p>{{Compat("api.URL.hash")}}</p>

<h2 id="参考">参考</h2>

<ul>
 <li>所属的 {{domxref("URL")}} 接口。</li>
</ul>