Window【ウィンドウ】オブジェクト
メモ プロパティ (抜粋) メソッド (抜粋)
メモ
概要
- ウィンドウオブジェクト (HTML仕様 で定義:外部リンク 参照)
- 各種オブジェクトの親 (省略可能)
- ダイアログ表示実装〔例:メソッド (抜粋)参照 〕
- インターバル実装〔インターバル設定・解除〕
- タイムアウト実装〔タイムアウト設定・解除〕
関連
外部リンク
- HTML (英語)
The Window object HTML Living Standard Timers HTML Living Standard
プロパティ (抜粋)
インタフェース | プロパティ | 備考 |
---|---|---|
Window | closed | ウィンドウの開閉状態 |
Window | document | ドキュメント オブジェクト |
Window | history | ブラウザ履歴 オブジェクト |
Window | location | ロケーション オブジェクト |
Window | navigator | ブラウザ オブジェクト |
Window | opener | 現ウィンドウを開いたウィンドウ |
Window | parent | 親ウィンドウ |
BeforeUnloadEvent | returnValue | ダイアログの戻り値 |
メソッド (抜粋)
インタフェース | メソッド | 備考 |
---|---|---|
Window | void alert (DOMString message) | 警告ダイアログ表示 (モーダルダイアログ) |
WindowTimers | void clearInterval (long handle) | インターバル 解除 |
WindowTimers | void clearTimeout (long handle) | タイムアウト 解除 |
Window | boolean confirm (optional DOMString message = "") | 確認ダイアログ表示 (モーダルダイアログ) |
Window | void print () | 印刷 |
Window | DOMString? prompt (optional DOMString message = "", optional DOMString default = "") | テキスト入力ダイアログ表示 (モーダルダイアログ) |
WindowTimers | long setInterval (Function handler, optional long timeout, any... arguments) long setInterval (DOMString handler, optional long timeout, any... arguments) | インターバル 設定 |
WindowTimers | long setTimeout (Function handler, optional long timeout, any... arguments) long setTimeout (DOMString handler, optional long timeout, any... arguments) | タイムアウト 設定 |
Window | any showModalDialog (DOMString url, optional any argument) | モーダルダイアログ表示 |