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

画像クリック時にフォームを増やす

Last updated at Posted at 2020-12-19

はじめに

本記事の内容は学習の備忘録になります。

実装概要

  • 画像をクリックしてフォームのinputタグを増やす。
  • inputタグのid,placeholderの番号を連番にする。
  • cssは省略

demo

form_add.mov.gif

内容

まずはHTMLでフォームを作成

<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <form action="" method="POST">
    <div>
      <input type="text" id="text" placeholder="フォーム-0">
    </div>
    <!-- ボタンで増やす場合 -->
    <!-- <input type="button" value="フォーム追加" onclick="addForm()"> -->
  </form>
  <script src="main.js"></script>
</body>
</html>

肝心なJS部分。


function addForm() {
  let i = 1 ;
  let input_data = document.createElement('input');
  input_data.type = 'text';
  input_data.id = 'inputform_' + i;
  input_data.placeholder = 'フォーム-' + i;
  let parent = document.getElementById('form_area');
  parent.appendChild(input_data);
  i++ ;
}
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?