aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/window/document/index.html
blob: d5acd251def5583eae29289e24b3396f5cc5ba43 (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
---
title: Window.document
slug: Web/API/Window/document
translation_of: Web/API/Window/document
---
<div>{{APIRef}}</div>

<h2 id="Summary" name="Summary">Resumen</h2>

<p>Retorna una referencia al documento contenido en la ventana.</p>

<div class="note"><strong>Nota:</strong> {{Fx_minversion_inline(3)}} Firefox 3 altera la seguridad para los documentos entre ventanas, de modo que sólo el dominio desde el cual ha sido cargada una ventana puede acceder al documento. A pesar de que esto rompe el funcionamiento de algunos sitios existentes, es una modificación adoptada por Firefox 3 e Internet Explorer 7, que resulta en una mejora de seguridad.</div>

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

<pre class="syntaxbox"><var>doc</var> = window.document
</pre>

<h3 id="Parameters" name="Parameters">Parámetros</h3>

<ul>
 <li><code>doc</code> es una referencia al objeto del <a href="/en-US/docs/DOM/document" title="DOM/document">document</a>.</li>
</ul>

<h2 id="Example" name="Example">Example</h2>

<pre class="brush:html">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
   &lt;title&gt;Hola, Mundo!&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;script type="text/javascript"&gt;
   var doc = window.document;
   console.log(doc.title); // Hola, Mundo!
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>

<h2 id="Specification" name="Specification">Especificación</h2>

<ul>
 <li><a href="http://www.whatwg.org/html/#the-window-object" title="http://www.whatwg.org/html/#the-window-object">HTML</a></li>
</ul>