aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/window/document/index.html
blob: e5e169968fef15a6a17538ce3b778231bf6f0165 (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
---
title: Window.document
slug: Web/API/Window/document
tags:
  - API
  - DOM HTML
  - NeedsCompatTable
  - NeedsExample
  - NeedsMarkupWork
  - NeedsSpecTable
  - Propriedade
  - Referencia
  - Window
translation_of: Web/API/Window/document
---
<div>{{APIRef}}</div>

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

<p>Retorna a referência para o documento contido na janela.</p>

<div class="note"><strong>Nota:</strong>Firefox 3 altera a segurança para documentos de uma janela de modo que apenas o domínio a partir do qual foi localizado possa acessar o documento. Enquanto isso pode quebrar alguns sites existentes, é um movimento feito por ambos Firefox 3 e Internet Explorer 7, e resulta na melhoria de segurança.</div>

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

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

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

<ul>
 <li><code>doc</code> é um objeto referência de um objeto para um <a href="/en-US/docs/DOM/document" title="DOM/document">document</a>.</li>
</ul>

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

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

&lt;script type="text/javascript"&gt;
   var doc = window.document;
   alert( doc.title);    // alerts: Hello, World!
&lt;/script&gt;

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

<h2 id="Specification" name="Specification">Especificação</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>