URL.host - Web API | MDN

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 11월.

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

구문

js

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

USVString.

예제

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
# dom-url-host

브라우저 호환성

같이 보기

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

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.