blob: 44cd69add3d90773ecb4587ee1b4031d0c9dce53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
---
title: EventListener
slug: Web/API/EventListener
tags:
- API
- DOM
- DOM Events
- NeedsContent
translation_of: Web/API/EventListener
---
{{APIRef("DOM Events")}}
**`EventListener`** インターフェイスは、{{domxref("EventTarget")}} オブジェクトによってディスパッチされたイベントを処理できるオブジェクトを表します。
> **Note:** レガシーコンテンツとの互換性が必要なため、`EventListener` は、関数、`handleEvent()` メソッドをもつオブジェクト両方を受け入れます。
> これを以下の [例](#例) に示します。
## プロパティ
_このインターフェイスはいかなるプロパティを実装も継承もしません。_
## メソッド
_このインターフェイスはメソッドを継承しません。_
- {{domxref("EventListener.handleEvent()")}}
- : 指定されたタイプのイベントが発生するたびに呼び出される関数。
## 例
### HTML
```html
<button id="btn">Click here!</button>
<p id="funcOutput"></p>
<p id="handleEvtOutput"></p>
```
### JavaScript
```js
const buttonElement = document.getElementById('btn');
const funcOutput = document.getElementById('funcOutput');
const handleEvtOutput = document.getElementById('handleEvtOutput');
// コールバック関数を用意して、'click' イベントのハンドラを追加する。
// 要素がクリックされたとき、
// id "funcOutput" の p タグに "Element clicked through function!" と出力されます。
buttonElement.addEventListener('click', function (event) {
funcOutput.textContent = 'Element clicked through function!';
});
// 互換性のために `handleEvent` プロパティを持つ非関数オブジェクトは、
// 関数と同じもののように扱われます。
// コールバック関数と同じように id "handleEvtOutput" の p タグに、
// "Element clicked through handleEvent property!" と出力されます。
buttonElement.addEventListener('click', {
handleEvent: function (event) {
handleEvtOutput.textContent = 'Element clicked through handleEvent property!';
}
});
```
### 結果
{{EmbedLiveSample('Example')}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
### 関連情報
- [addEventListener](/ja/docs/Web/API/EventTarget/addEventListener)
|