HTMLHyperlinkElementUtils.hostname

Свойство HTMLHyperlinkElementUtils.hostname – это USVString (en-US), содержащий домен.

Синтаксис

string = object.hostname;
object.hostname = string;

Примеры

js
// Допустим, что документ содержит элемент <a id="myAnchor" href="https://developer.mozilla.org/ru/docs/HTMLHyperlinkElementUtils.hostname">
var anchor = document.getElementByID("myAnchor");
var result = anchor.hostname; // Вернёт: 'developer.mozilla.org'

Спецификации

Specification
HTML Standard
# dom-hyperlink-hostname-dev

Совместимость с браузерами

BCD tables only load in the browser

Смотрите также