URL.host

URL 인터페이스의 host 속성은 URL의 호스트, 즉 hostname와 함께, 포트가 존재하는 경우 ':'과 그 뒤의 port를 포함하는 USVString 문자열입니다.

참고: 이 기능은 Web Worker에서 사용할 수 있습니다.

구문

js
const host = url.host;
url.host = newHost;

예제

js
let url = new URL("https://developer.mozilla.org/ko/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org"

url = new URL("https://developer.mozilla.org:443/ko/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org"
// The port number is not included because 443 is the scheme's default port

url = new URL("https://developer.mozilla.org:4097/ko/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org:4097"

명세

Specification
URL Standard
# dom-url-host

브라우저 호환성

BCD tables only load in the browser

같이 보기

  • 속성이 속한 URL 인터페이스.