blob: 284e9f0f2c75487df6d8fd64becccc03a7d12c6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: window.status
slug: Web/API/Window/status
tags:
- DOM
- DOM_0
- Gecko
- Gecko DOM Reference
translation_of: Web/API/Window/status
---
<div>
{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p>ブラウザの下部にあるステータスバー内にテキストを設定するか、もしくは、直前に設定されていたテキストを返します。</p>
<p>このプロパティは、Firefox、及び、いくつかの他のブラウザのデフォルト設定では動作しません。つまり、<code>window.status</code> を設定しても、ステータスバーに表示されているテキストには何の効果もないということです。ステータスバーのテキストを変更するスクリプトを許可するには、ユーザは、<code>about:config</code> 画面で、<code>dom.disable_window_status_change</code> の設定を <code>false</code> にしなければなりません。</p>
<div class="geckoVersionNote">
<p>{{gecko_callout_heading("1.9.1")}}</p>
<p>Starting in Gecko 1.9.1 {{geckoRelease("1.9.1")}}, users can let websites change the status text by enabling the "Change status bar" preference in the Advanced options panel.</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>string</var> =<i>window</i>.status; //取得<i>window</i>.status = <var>string</var>; //設定</pre>
<h2 id="Specification" name="Specification">仕様</h2>
<p>{{DOM0}}</p>
|