Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.menubar

概要

menubar オブジェクトを返します。このバーの表示は、ウィンドウ内でトグル(表示/非表示の状態を切り替える)ことができます。

構文

objRef = window.menubar

以下の完全な HTML の例は、様々な "bar" オブジェクトの visible プロパティで利用可能な方法を示しています。

<html>
<head>
  <title>様々な DOM テスト</title>
  <script>
    // 存在するウィンドウのバーの状態を変更します
    netscape.security.PrivilegeManager.
        enablePrivilege("UniversalBrowserWrite");
    window.menubar.visible=!window.menubar.visible;
  </script>
</head>
<body>
  <p>様々な DOM テスト</p>
</body>
</html>

仕様

仕様 状態 コメント
WHATWG HTML Living Standard
Window.menubar の定義
現行の標準
HTML5
Window.menubar の定義
勧告

関連項目

window.locationbar, window.personalbar, window.scrollbars, window.statusbar, window.toolbar

ドキュメントのタグと貢献者

 このページの貢献者: momdo, fscholz, khalid32, ethertank, Potappo
 最終更新者: momdo,