0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

addEventListenerの構文と(e)について

Posted at

対象者

  • javascript初学者

addEventListener構文

まず役割2つあります。

①イベント発生時に関数を呼び出す.
②イベントオブジェクト(e)を生成する。

①について.
構文

○○.addEventListener(A,B)
○○がAされたらBを実行する。
A=イベント
B=関数

例 

button.addEventListener(“click”,output )
function output{console.log(“ボタンが押されました”)}

意味
ボタンがクリックされたらoutputという関数を実行する.
output = コンソールにボタンが表示されましたと表示する

②に関して.
イベントオブジェクト(e)=addEventListenerの第一引数(click)の情報がたくさん詰まっている.
例えば
イベントを発生させた要素やクリック位置に関するものなど。
スクリーンショット 2023-05-05 23.25.05.png

参考情報

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?