--- title: URL.href slug: Web/API/URL/href tags: - API - Property - Reference - 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; // 戻り値: 'https://developer.mozilla.org/en-US/docs/Web/API/URL/href'
仕様 | 状態 | コメント |
---|---|---|
{{SpecName('URL', '#dom-url-href', 'URL.href')}} | {{Spec2('URL')}} | 初期定義 |
{{Compat("api.URL.href")}}