--- 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没有包含片段标识符,这个属性为一个空的字符串, "".

Syntax

string = object.hash;
object.hash = string;

Examples

// 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'

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', '#dom-hyperlink-hash', 'HTMLHyperlinkElementUtils.hash')}} {{Spec2('HTML WHATWG')}} Initial definition

Browser compatibility

{{Compat("api.HTMLAnchorElement.hash")}}

See also