5
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 1 year has passed since last update.

【JavaScript】JavaScriptの基本の基本

Last updated at Posted at 2023-06-12

JavaScriptの基本の基本の備忘録

・テキストエリアに記入したテキストが、アラートボタンを押すと表示される

a.html
<script src = "a.js" ></script>
<!-- jsファイルを読み込む -->

<textarea id="textarea"></textarea>
<!-- textareaというidを持つテキストエリア -->

<button id="button">アラート</button>
<!-- buttonというidを持つアラートボタン -->
a.js
document.addEventListener('DOMContentLoaded', () => {
// ウェブページが完全に読み込まれた後に特定の処理を実行するためのイベントリスナーを追加

  const buttonAlert = document.getElementById("button")
  // アラートのDOMを定義

  const textarea = document.getElementById("textarea")
  // テキストエリアのDOMを定義

  buttonAlert.addEventListener("click", () => {
  // アラートボタンをクリックした時というイベントを設定

  alert(textarea.value)
  // アラートの内容を設定
  })
});
5
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
5
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?