--- title: Document.URL slug: Web/API/Document/URL tags: - API - Document - Property translation_of: Web/API/Document/URL ---
Возвращает строку URL документа HTML.
string = document.URL
document.getElementById("url").textContent = document.URL;
<p id="urlText">
URL:<br/>
<span id="url">URL goes here</span>
</p>
{{EmbedLiveSample("Пример", "100%", 100)}}
{{Compat("api.Document.URL")}}