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

JavaScriptのイベント処理について(初学者向け)

Last updated at Posted at 2021-12-30

##はじめに
JavaScriptのイベント処理の一例をご紹介します。

##内容
今何時?と記されているボタンをクリックすると、
私の名前はDOMですの文章が13時ですに変わるイベントです。


_2021-12-30 14 41 21


HTMLはこちらになります↓

html
<!DOCTYPE html>
<html lang="ja">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>event</title>
</head>

<body>
    <p id="message"></p>
    <div><button id="btn1">今何時?</button></div>
    <script src="event.js"></script>
</body>

</html>

次にJavaScriptはこちらになります↓
説明も合わせて記載しています。

JavaScript
// ----------------------------------------------------------------------------
// ↓ドキュメントの中にあるid名messageをquerySelectorで取得してHTMLの内容を書き換えた
// ----------------------------------------------------------------------------
document.querySelector('#message').innerHTML = '私の名前はDOMです';

// ---------------------------------------------------------
// ↓btn1がクリックされた時にmessageを13時ですに書きかえる処理
// ---------------------------------------------------------

document.querySelector('#btn1').addEventListener('click', () => {
    document.querySelector('#message').innerHTML = '13時です';
});

##おわり

ご覧いただきありがとうございました。

また別の記事でお会いしましょう〜👋

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