Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.confirm

概要

メッセージと、OK と キャンセルの 2 つのボタンを持つモーダルダイアログを表示します。

構文

result = window.confirm(message)
  • message は、ダイアログ内に表示される文字列です。
  • result は、OK と キャンセルのどちらを選択したかを示す真偽値です(true は、OK を意味します)。

if (window.confirm("Want to see my mood ring?")) {
  window.open("mood.html", "mood ring", "");
}

注記

ダイアログボックスはモーダルウィンドウです。つまり閲覧者は、これを閉じないとプログラムの他のインタフェース部分にアクセスする事ができません。ですから、ダイアログボックス(もしくは、モーダルウィンドウ)を生成する関数を乱用するべきではありません。

Chrome ユーザ (例えば、 extensions) は、nsIPromptService メソッドを代わりに使うべきです。

仕様

DOM Level 0。どの標準にも属しません。

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank, Potappo
 最終更新者: khalid32,