1
1

More than 3 years have passed since last update.

イベントハンドラー とイベントリスナーの違い

Last updated at Posted at 2020-09-10

1.タグ内の属性として宣言する
2.要素オブジェクトのプロパティとして宣言する
3.addEventListenerメソッドを使って宣言する

引用元:JavaScript本格入門 山田祥寛著

1.2がイベントハンドラー
3がイベントリスナー

document.addEventListener('DOMContentLoaded',function(){
}, false);
内で定義されてるのが3のイベントリスナーってことにとりあえずしておく。

1
1
1

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
1
1