回答編集履歴
1
あ
test
CHANGED
@@ -1,10 +1,14 @@
|
|
1
1
|
```
|
2
|
+
|
3
|
+
function hello(event){console.log(event)}
|
2
4
|
|
3
5
|
window.addEventListener('click', hello);
|
4
6
|
|
5
|
-
|
7
|
+
```
|
6
8
|
|
9
|
+
|
10
|
+
|
7
|
-
|
11
|
+
Windowをクリックすると、イベントオブジェクトがhelloに渡されます。
|
8
12
|
|
9
13
|
|
10
14
|
|