aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/document/url/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api/document/url/index.html')
-rw-r--r--files/es/web/api/document/url/index.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/files/es/web/api/document/url/index.html b/files/es/web/api/document/url/index.html
new file mode 100644
index 0000000000..eec4361827
--- /dev/null
+++ b/files/es/web/api/document/url/index.html
@@ -0,0 +1,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>