From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/window/toolbar/index.html | 74 ++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 files/ja/web/api/window/toolbar/index.html (limited to 'files/ja/web/api/window/toolbar') diff --git a/files/ja/web/api/window/toolbar/index.html b/files/ja/web/api/window/toolbar/index.html new file mode 100644 index 0000000000..dd40c4c522 --- /dev/null +++ b/files/ja/web/api/window/toolbar/index.html @@ -0,0 +1,74 @@ +--- +title: window.toolbar +slug: Web/API/Window/toolbar +tags: + - Gecko + - HTML DOM + - Window + - 要更新 +translation_of: Web/API/Window/toolbar +--- +

{{ ApiRef() }} {{ 英語版章題("Summary") }}

+ +

概要

+ +

toolbar オブジェクトを返します。このバーの表示は、ウィンドウ内でトグル(表示/非表示の状態を切り替える)ことができます。 {{ 英語版章題("Syntax") }}

+ +

構文

+ +
objRef = window.toolbar
+ +

{{ 英語版章題("Example") }}

+ +

+ +

以下の完全な HTML の例は、様々な "bar" オブジェクトの visible プロパティで利用可能な方法を示しています。存在するウィンドウのあらゆるバーの visible プロパティ を書き換えるには、特権が必要です。

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

{{ 英語版章題("Notes") }}

+ +

注記

+ +

あなたが上記の例のページを読み込んだとき、ブラウザは、以下のダイアログを表示するでしょう。: Image:Modify_any_open_window_dialog.png

+ +

バーの表示を表示をトグルには、上記の例のように、スクリプトの実行と特権要求を許可しなければなりません。また、様々なツールバーの表示の動的な変更は、ウィンドウのサイズをかなり劇的に変化させることがあり、ページのレイアウトに影響する可能性があることに注意してください。

+ +

参照: window.locationbar, window.menubar, window.personalbar, window.scrollbars, window.statusbar

+ +

{{ 英語版章題("Specification") }}

+ +

仕様

+ + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', 'browsers.html#dom-window-toolbar', 'Window.toolbar')}}{{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'browsers.html#dom-window-toolbar', 'Window.toolbar')}}{{Spec2('HTML5 W3C')}}
-- cgit v1.2.3-54-g00ecf