blob: b99fa5747ac3c46af0b5c4a209e03121c734e3b0 (
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: Window.length
slug: Web/API/Window/length
tags:
- API
- DOM
- Gecko
- Propriedade
- Referencia
- Referência do DOM
- Referência do DOM do Gecko
- WebAPI
- Window
translation_of: Web/API/Window/length
---
<div>{{ ApiRef() }}</div>
<h2 id="Summary" name="Summary">Resumo</h2>
<p>Retorna o número de frames (tanto elementos <code>frame</code> ou <code>iframe</code>) dentro da janela.</p>
<h2 id="Syntax" name="Syntax">Sintaxe</h2>
<pre class="syntaxbox"><em>quantidadeFrames</em> = window.length;
</pre>
<ul>
<li><em>quantidadeFrames</em> é o número de frames.</li>
</ul>
<h2 id="Example" name="Example">Exemplo</h2>
<pre class="brush:js">if (window.length) {
// este é um documento com subframes
}</pre>
<h2 id="Specification" name="Specification">Especificações</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','browsers.html#dom-length','Window.length')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
|