blob: f9169d6788295437fa63df6074ccdca6b8a50240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
---
title: Document.URL
slug: Web/API/Document/URL
tags:
- API
- Document
- Property
translation_of: Web/API/Document/URL
---
<div>{{APIRef("DOM")}}</div>
<p>Возвращает строку URL документа HTML.</p>
<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><em>string</em> = document.URL
</pre>
<p> </p>
<h2 id="Пример">Пример</h2>
<h3 id="JavaScript">JavaScript</h3>
<pre><code>document.getElementById("url").textContent = document.URL;</code></pre>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p id="urlText">
URL:<br/>
<span id="url">URL goes here</span>
</p></pre>
<h3 id="Результат">Результат</h3>
<p>{{EmbedLiveSample("Пример", "100%", 100)}}</p>
<h2 id="Спецификации">Спецификации</h2>
{{Specifications}}
<h2 id="Браузерная_поддержка">Браузерная поддержка</h2>
<p>{{Compat("api.Document.URL")}}</p>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>{{domxref("HTMLDocument")}}</li>
</ul>
<p> </p>
|