--- title: HTMLHyperlinkElementUtils.href slug: Web/API/HTMLAnchorElement/href tags: - HTMLHyperlinkElementUtils.href translation_of: Web/API/HTMLHyperlinkElementUtils/href original_slug: Web/API/HTMLHyperlinkElementUtils/href ---

{{ApiRef("URL API")}}

HTMLHyperlinkElementUtils.href 属性是一个包含整个URL的 {{domxref("USVString")}}。

Syntax

string = object.href;
object.href = string;

Examples

// Lets imagine an <a id="myAnchor" href="https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils/href"> element is in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.href; // Returns: 'https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils/href'

Specifications

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

Browser compatibility

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

See also