blob: bc90c29e23d61d062596bdf6e4cc0e185d5f965a (
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
- Property
- Reference
- Window
translation_of: Web/API/Window/menubar
---
<div>{{ APIRef() }}</div>
<p><code><strong>Window.menubar</strong></code> プロパティは <code>menubar</code> オブジェクトを返します。これによって表示状態を確認することができます。</p>
<h2 id="Syntax">構文</h2>
<pre class="brush: js"><em>objRef</em> = <em>window</em>.menubar
</pre>
<h2 id="Example">例</h2>
<p>以下の完全な HTML の例は、 <code>menubar</code> オブジェクトの <code>visible</code> プロパティの使用方法を示しています。</p>
<pre class="brush:html"><html>
<head>
<title>様々な DOM テスト</title>
<script>
var visible = window.menubar.visible;
</script>
</head>
<body>
<p>様々な DOM テスト</p>
</body>
</html>
</pre>
<h2 id="Specifications">仕様書</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</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="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Window.menubar")}}</p>
<h2 id="See_also">関連情報</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>
|