--- title: URL.href slug: Web/API/URL/href translation_of: Web/API/URL/href ---
{{domxref("URL")}} 接口的 href 属性是一个包含完整 URL 的 {{domxref("USVString")}} 值。
{{AvailableInWorkers}}
string = object.href; object.href =string;
{{domxref("USVString")}}.
var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/href');
var result = url.href; // Returns: 'https://developer.mozilla.org/en-US/docs/Web/API/URL/href'
| 规范 | 状态 | 意见 |
|---|---|---|
| {{SpecName('URL', '#dom-url-href', 'URL.href')}} | {{Spec2('URL')}} | 初始定义 |
{{Compat("api.URL.href")}}