--- title: defaultStatus slug: Web/API/Window/defaultStatus tags: - DOM - DOM_0 - Gecko - Gecko DOM Reference - 要更新 translation_of: Web/API/Window/defaultStatus ---

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

概要

与えられたウィンドウのステータスバーのテキストを取得/設定します。

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

構文

sMsg = window.defaultStatus
window.defaultStatus =sMsg

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

引数

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

<html>
 <body onload="window.defaultStatus='hello!';"/>
  <button onclick="window.confirm('Are you sure you want to quit?');">confirm</button>
 </body>
</htm>

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

注記

一度開いたウィンドウのステータスバーのテキストを設定するには、window.status を使用してください。

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

仕様

{{ DOM0() }}