0
0

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.

JavaScript イベント処理 メモ

Posted at

イベント処理とは

  • ユーザーの行動に合わせてDOM操作を行う
    • フォームを送信する
    • ボタンをクリックする
    • など

イベント処理の作り方

JavaScript.js
HTML要素.addEventListener('イベント種類',()=>{
    イベント処理
});

イベント種類

イベントの種類 処理の実行タイミング
click マウスボタンを押して話した時
scroll 画面をスクロールした時
など

JavaScript.js

//outputと指定しているidを持つHTML要素を取得し定数に入れる
const btn = document.getElementbyId('output');

//outputとid指定しているボタンをクリックする際のイベント処理
btn.addEventListener('click',()=>{
    console.log(ボタンがクリックされました);
});

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?