--- title: Document.URL slug: Web/API/Document/URL tags: - API - Document - Property translation_of: Web/API/Document/URL ---
{{APIRef("DOM")}}

Возвращает строку URL документа HTML.

Синтаксис

string = document.URL

 

Пример

JavaScript

document.getElementById("url").textContent = document.URL;

HTML

<p id="urlText">
  URL:<br/>
  <span id="url">URL goes here</span>
</p>

Результат

{{EmbedLiveSample("Example", "100%", 100)}}

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

Спецификация Статус Комментарий
{{SpecName("DOM WHATWG", "#dom-document-url", "Document.URL")}} {{Spec2("DOM WHATWG")}} Defines that the property is a {{domxref("USVString")}} instead of a {{domxref("DOMString")}}.
{{SpecName("DOM1", "level-one-html.html#attribute-URL", "Document.URL")}} {{Spec2("DOM1")}} Initial definition

Браузерная поддержка

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

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