--- title: HTMLHyperlinkElementUtils.hash slug: Web/API/HTMLAnchorElement/hash tags: - HTMLHyperlinkElementUtils.hash translation_of: Web/API/HTMLHyperlinkElementUtils/hash original_slug: Web/API/HTMLHyperlinkElementUtils/hash ---
{{ APIRef("URLUtils") }}
HTMLHyperlinkElementUtils.hash
属性返回一个包含“#”的 {{domxref("DOMString")}} , 后跟URL的片段标识符。
片段没有百分比解码。如果URL没有包含片段标识符,这个属性为一个空的字符串, ""
.
string = object.hash; object.hash = string;
// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/docs/HTMLHyperlinkElementUtils.href#youhou"> element be in the document var anchor = document.getElementById("myAnchor"); var result = anchor.hash; // Returns:'#youhou'
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', '#dom-hyperlink-hash', 'HTMLHyperlinkElementUtils.hash')}} | {{Spec2('HTML WHATWG')}} | Initial definition |
{{ CompatibilityTable() }}
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} [1] | {{CompatVersionUnknown}} | {{CompatGeckoDesktop("22")}}[3] | {{CompatNo}}[2] | {{CompatNo}}[2] | {{CompatNo}}[2] |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} [1] | {{CompatVersionUnknown}} [1] | {{CompatVersionUnknown}} | {{CompatGeckoMobile("22")}}[3] | {{CompatNo}}[2] | {{CompatNo}}[2] | {{CompatNo}}[2] |
[1] Starting in Chrome 52, this property was moved to {{domxref('URL')}}
[2] Though not grouped in a single abstract interface, this method is directly available on the interfaces that implement it, if this interface is supported.
[3] From Gecko 22 to Gecko 44, this property was on the URLUtils
mixin. It has been moves either on the HTMLHyperlinkElementUtils
mixin, or directly on the interface. Also, from Gecko 29 to Gecko 40, the returned value was incorrectly percent-decoded.