--- title: Window.locationbar slug: Web/API/Window/locationbar tags: - API - HTML DOM - NeedsExample - NeedsMarkupWork - Property - Reference - Window translation_of: Web/API/Window/locationbar ---
{{APIRef}}

locationbar オブジェクトを返し、これで表示/非表示を確認することができます。

構文

objRef = window.locationbar

次の HTML の完全な例は、 locationbar オブジェクトの visible プロパティの使用方法を示しています。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>様々な DOM テスト</title>

<script>
var visible = window.locationbar.visible;
</script>

</head>
<body>
  <p>様々な DOM テスト</p>
</body>
</html>

仕様書

仕様書 状態 備考
{{SpecName('HTML WHATWG', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}} {{Spec2('HTML5 W3C')}}

ブラウザーの互換性

{{Compat("api.Window.locationbar")}}

関連情報