A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/ko/docs/Web/API/URL/host below:

URL.host - Web API | MDN

URL.host

Baseline Widely available

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

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

구문
const host = url.host;
url.host = newHost;
값

USVString.

예제
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"
명세 브라우저 호환성 같이 보기

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4