From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/window/showmodaldialog/index.html | 99 ++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 files/ja/web/api/window/showmodaldialog/index.html (limited to 'files/ja/web/api/window/showmodaldialog') diff --git a/files/ja/web/api/window/showmodaldialog/index.html b/files/ja/web/api/window/showmodaldialog/index.html new file mode 100644 index 0000000000..fc00fabadd --- /dev/null +++ b/files/ja/web/api/window/showmodaldialog/index.html @@ -0,0 +1,99 @@ +--- +title: window.showModalDialog +slug: Web/API/Window/showModalDialog +tags: + - API + - DOM + - Deprecated + - Window +translation_of: Web/API/Window/showModalDialog +--- +
{{Fx_minversion_header(3)}} {{obsolete_header}}{{APIRef}}
+ +
+

この機能は削除されました。ウェブサイトやアプリケーションを修正してください

+ +

このメソッドは Chrome 43 および Firefox 56 で廃止されました。

+
+ +

概要

+ +

指定された HTML 文書を含む モーダルダイアログボックスを生成し、表示します。

+ +

構文

+ +
returnVal = window.showModalDialog(uri[,arguments][,options]);
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
構文説明
center: {on | off | yes | no | 1 | 0 }この引数の値が onyes、または、1 である場合、ダイアログウィンドウはデスクトップの中央に配置されます。それ以外の場合は、ダイアログボックスが隠れます。デフォルトの値は、yes です。
dialogheight:height ダイアログボックスの高さを指定します。デフォルトでは、ピクセル値でサイズが指定されます。
dialogleft:left ダイアログボックスの水平位置をデスクトップの左上を基準とした値で指定します。
dialogwidth:width ダイアログボックスの幅を指定します。デフォルトでは、ピクセル値でサイズが指定されます。
dialogtop:top ダイアログボックスの垂直位置をデスクトップの左上角を基準とした値で指定します。
resizable: {on | off | yes | no | 1 | 0 }この引数の値が onyes、または、1 である場合、ダイアログウィンドウは、ユーザによってリサイズ可能になります。それ以外の場合は、ウィンドウのサイズが自動で調整されます。デフォルトの値は、no です。
scroll: {on | off | yes | no | 1 | 0 }この引数の値が onyes、または、1 である場合、ダイアログボックスにスクロールバーが表示されます。それ以外の場合は、ボックスのサイズが自動で調整されます。デフォルトの値は、no です。
+ +

{{Note("Firefox は、dialogHideedgestatus、および、unadorned 引数を実装していません。")}}

+ +

互換性

+ +

Microsoft Internet Explorer 4 で実装され、Firefox では、Firefox 3 で (Fx 28 で非推奨)、Safari は Safari 5.1 でサポートが追加されました。

+ +

このメソッドは Chrome 43 および Firefox 56 で完全に廃止されました。Safari から削除される可能性については、WebKit bug 151885 をご覧ください。

+ +

+ +

showModalDialog()

+ +

注記

+ +

showModalDialog() is currently being standardized as part of HTML5. The third argument (for additional options) is not present in the HTML5 version, and is (safely) ignored by both Safari and Chrome.

+ +

仕様

+ + + +

関連情報

+ + -- cgit v1.2.3-54-g00ecf