--- title: URL.href slug: Web/API/URL/href tags: - API - Property - Reference - URL - href translation_of: Web/API/URL/href ---
{{ApiRef("URL API")}}

{{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")}}

関連情報