--- title: HTMLHyperlinkElementUtils.href slug: Web/API/URLUtils/href tags: - HTMLHyperlinkElementUtils.href translation_of: 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

{{ 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 moved either on the HTMLHyperlinkElementUtils mixin, or directly on the interface.

See also