0
4

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 3 years have passed since last update.

JavaScript イベントリスナー一覧

Last updated at Posted at 2020-03-21

よく使用する 12個

  • load Webページの読み込みが完了した時に発動(画像などのリソースすべて含む)
  • DOMContentLoaded Webページが読み込みが完了した時に発動(画像などのリソースは含まない)
  • click マウスボタンをクリックした時に発動
  • mousedown マウスボタンを押している時に発動
  • mouseup マウスボタンを離したときに発動
  • mousemove マウスカーソルが移動した時に発動
  • keydown キーボードのキーを押したときに発動
  • keyup キーボードのキーを離したときに発動
  • keypress キーボードのキーを押している時に発動
  • change フォーム部品の状態が変更された時に発動
  • submmit フォームのsubmitボタンを押したときに発動
  • scroll 画面がスクロールした時に発動

ドキュメント

https://developer.mozilla.org/ja/docs/Web/Events

0
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?