diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-10 10:43:30 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-17 00:02:49 +0900 |
commit | 9942527d59ff05dc2b46f3cb4c5a63f400db3761 (patch) | |
tree | 670b3baffd1c07950f9044ff2cd4e4a2a58802cd /files/ja/web/api/uievent | |
parent | 1e1b73626598ae68aaeb8d7ab6ae4bc238dfd7d9 (diff) | |
download | translated-content-9942527d59ff05dc2b46f3cb4c5a63f400db3761.tar.gz translated-content-9942527d59ff05dc2b46f3cb4c5a63f400db3761.tar.bz2 translated-content-9942527d59ff05dc2b46f3cb4c5a63f400db3761.zip |
2021/09/15 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api/uievent')
-rw-r--r-- | files/ja/web/api/uievent/view/index.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/files/ja/web/api/uievent/view/index.md b/files/ja/web/api/uievent/view/index.md new file mode 100644 index 0000000000..edba5f1c6b --- /dev/null +++ b/files/ja/web/api/uievent/view/index.md @@ -0,0 +1,33 @@ +--- +title: UIEvent.view +slug: Web/API/UIEvent/view +tags: + - API + - DOM + - NeedsLiveExample + - プロパティ + - 読み取り専用 + - リファレンス + - UIEvent +browser-compat: api.UIEvent.view +translation_of: Web/API/UIEvent/view +--- +{{APIRef("DOM Events")}} + +**`UIEvent.view`** は読み取り専用のプロパティで、イベントを生成したものの {{domxref("WindowProxy")}} オブジェクトを返します。ブラウザーでは、これはイベントが発行された {{ domxref("Window") }} です。 + +## 構文 + +```js +var view = event.view; +``` + +- `view` は `AbstractView` オブジェクトの参照です。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} |