aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/length/index.html
blob: 2980798007bd1ad4e54ab4d68a96ae27a3f84ba9 (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
---
title: Window.length
slug: Web/API/Window/length
translation_of: Web/API/Window/length
---
<div>{{ ApiRef() }}</div>

<h2 id="Summary" name="Summary">Résumé</h2>

<p>Retourne le nombre de frames (soit des éléments de frame ou iframe) présent sur la page.</p>

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

<pre class="syntaxbox"><em>nombreDeFrames</em>= window.length;
</pre>

<ul>
 <li><em>nombreDeFrames est égal au nombre de frames présent sur la page.</em></li>
</ul>

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

<pre class="brush:js">if (window.length) {
  // La page contient des frames
}</pre>

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

<p>{{DOM0}}</p>