blob: eb2a7337ec1fce5b40fed2b1a0b51480bfbe3b5c (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
---
title: Window.menubar
slug: Web/API/Window/menubar
tags:
- API
- HTML DOM
- Propriété
- Reference
- Window
translation_of: Web/API/Window/menubar
---
<div>{{ APIRef() }}</div>
<p>La propriété <code><strong>Window.menubar</strong></code> renvoie l'objet <code>menubar</code>, dont la visibilité peut être vérifiée.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox notranslate"><em>objRef</em> = <em>window</em>.menubar
</pre>
<h2 id="Exemple">Exemple</h2>
<p>L'exemple HTML complet suivant montre comment la propriété <code>visible</code> de l'objet <code>menubar</code> est utilisée.</p>
<pre class="brush:html notranslate"><html>
<head>
<title>Divers Tests DOM</title>
<script>
var visible = window.menubar.visible;
</script>
</head>
<body>
<p>Divers Tests DOM</p>
</body>
</html>
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'browsers.html#dom-window-menubar', 'Window.menubar')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-menubar', 'Window.menubar')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<div class="hidden">Le tableau de compatibilité de cette page est généré à partir de données structurées. Si vous souhaitez contribuer aux données, veuillez consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et envoyez-nous une pull request.</div>
<p>{{Compat("api.Window.menubar")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li>{{domxref("Window.locationbar")}}</li>
<li>{{domxref("Window.personalbar")}}</li>
<li>{{domxref("Window.scrollbars")}}</li>
<li>{{domxref("Window.statusbar")}}</li>
<li>{{domxref("Window.toolbar")}}</li>
</ul>
|