--- 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")}}。
string = object.href; object.href =string;
// 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'
| Specification | Status | Comment | 
|---|---|---|
| {{SpecName('HTML WHATWG', '#dom-hyperlink-href', 'HTMLHyperlinkElementUtils.href')}} | {{Spec2('HTML WHATWG')}} | Initial definition. |