aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/document/url/index.html
blob: eec4361827a5a89d69b74b58883253586825aef1 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
title: document.URL
slug: Web/API/Document/URL
tags:
  - API
  - Documento
  - HTML DOM
  - Propiedad
  - Referencia
translation_of: Web/API/Document/URL
---
<div>{{APIRef("DOM")}}</div>

<p>La propiedad de sólo lectura <strong><code>URL</code></strong> de la interfaz {{domxref("Document")}} devuelve la ubicación del documento como una cadena de texto.</p>

<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox">var <var>string</var> = document.URL</pre>

<h2 id="Ejemplo">Ejemplo</h2>

<h3 id="JavaScript">JavaScript</h3>

<pre class="brush: js">document.getElementById("url").textContent = document.URL;</pre>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;p id="urlText"&gt;
  URL:&lt;br/&gt;
  &lt;span id="url"&gt;La URL va aquí&lt;/span&gt;
&lt;/p&gt;</pre>

<h3 id="Resultado">Resultado</h3>

<p>{{EmbedLiveSample("Example", "100%", 100)}}</p>

<h2 id="Especificaciones">Especificaciones</h2>

<table class="spectable standard-table">
 <thead>
  <tr>
   <th scope="col">Especificación</th>
   <th scope="col">Estado</th>
   <th scope="col">Comentario</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("DOM WHATWG", "#dom-document-url", "Document.URL")}}</td>
   <td>{{Spec2("DOM WHATWG")}}</td>
   <td>Define que la propiedad es una {{domxref("USVString")}} en lugar de un {{domxref("DOMString")}}.</td>
  </tr>
  <tr>
   <td>{{SpecName("DOM1", "level-one-html.html#attribute-URL", "Document.URL")}}</td>
   <td>{{Spec2("DOM1")}}</td>
   <td>Definición inicial</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>

<div>
<p>{{Compat("api.Document.URL")}}</p>
</div>

<h2 id="Ver_también">Ver también</h2>

<ul>
 <li>{{domxref("HTMLDocument")}}</li>
</ul>