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

{{domxref("URL")}} 인터페이스의 href 속성은 전체 URL을 담은 {{domxref("USVString")}}입니다.

{{AvailableInWorkers}}

구문

const urlString = url.href
url.href = newUrlString

{{domxref("USVString")}}.

예제

const url = new URL('https://developer.mozilla.org/ko/docs/Web/API/URL/href');
console.log(url.href); // Logs: 'https://developer.mozilla.org/ko/docs/Web/API/URL/href'

명세

Specification Status Comment
{{SpecName('URL', '#dom-url-href', 'URL.href')}} {{Spec2('URL')}} Initial definition.

브라우저 호환성

{{Compat("api.URL.href")}}

같이 보기