From 83f8f2e46e6cc4c68b64f1d7c6c27bcdfdb8e2ec Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 2 Aug 2021 23:34:45 +0900 Subject: Web/API/Window/status を更新 (#1671) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/07/23 時点の英語版に同期 - gecko_callout_heading を削除 --- files/ja/web/api/window/status/index.html | 43 ++++++++++++++++++------------- 1 file changed, 25 insertions(+), 18 deletions(-) (limited to 'files/ja/web/api') diff --git a/files/ja/web/api/window/status/index.html b/files/ja/web/api/window/status/index.html index 284e9f0f2c..fe58b2a29a 100644 --- a/files/ja/web/api/window/status/index.html +++ b/files/ja/web/api/window/status/index.html @@ -1,23 +1,30 @@ --- -title: window.status +title: Window.status slug: Web/API/Window/status tags: - - DOM - - DOM_0 - - Gecko - - Gecko DOM Reference +- API +- HTML DOM +- NeedsExample +- NeedsSpecTable +- Property +- Reference +- Window +browser-compat: api.Window.status translation_of: Web/API/Window/status --- -
- {{ApiRef}}
-

概要

-

ブラウザの下部にあるステータスバー内にテキストを設定するか、もしくは、直前に設定されていたテキストを返します。

-

このプロパティは、Firefox、及び、いくつかの他のブラウザのデフォルト設定では動作しません。つまり、window.status を設定しても、ステータスバーに表示されているテキストには何の効果もないということです。ステータスバーのテキストを変更するスクリプトを許可するには、ユーザは、about:config 画面で、dom.disable_window_status_change の設定を false にしなければなりません。

-
-

{{gecko_callout_heading("1.9.1")}}

-

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.

-
-

構文

-
string =window.status; //取得window.status = string; //設定
-

仕様

-

{{DOM0}}

+
{{APIRef}} {{Deprecated_Header}}
+ +

status は {{domxref("Window")}} インターフェイスのプロパティで、もともとブラウザーウィンドウの最下部にあるステータスバーのテキストを設定するためのものでした。しかし、 HTML 標準は window.status に設定してもステータスバーに表示されるテキストには影響させないよう要求しています。

+ +

構文

+ +
window.status = string; var value = window.status;
+ +

仕様書

+ +{{Specifications}} + +

ブラウザーの互換性

+ +

{{Compat}}

-- cgit v1.2.3-54-g00ecf