前提・実現したいこと
ボタンをクリックすることによって、フォームの項目を複製できるように実現したいです。
現状、+をクリックするとフォームが複製され、採番で番号が連番になるように実装はできました。
しかし問題点が2点あり、そちらが解決しないので質問をさせていただきました。
【問題点】
①追加ボタン(+)をクリックした後、追加のフォームに元の入力内容がそのまま反映されてしまう
(ラジオボタンの選択肢や、コメントやテキストの入力がそのまま引き継がれてしまう)
②ファイル選択後の名前の反映(.filename)が+で追加した項目で、出力されない
(初めから表示されているファイル選択は正常に表示される)
HTML
html
1<div class="items"> 2 <div class="item"> 3 <div class="left"> 4 5 <!-- ファイル選択 --> 6 <div class="file"> 7 <label class="file_wrap"> 8 <input type="file" name="file[0]" class="fileinput">ファイルを選択</label> 9 <span class="filename"></span> 10 </div> 11 12 <!-- 文字入力 --> 13 <label class="text" for="photo_area[0]">写真のタイトル</label> 14 <input type="text" id="photo_area[0]" name="photo_area[0]" placeholder="" value=""> 15 16 17 <!-- ラジオボタン --> 18 <label class="text">写真の評価</label> 19 <div class="radio"> 20 21 <label for="status-a[0]"> 22 <input type="radio" name="status[0]" value="1" id="status-a[0]"><span>A</span></label> 23 24 <label for="status-b[0]"> 25 <input type="radio" name="status[0]" value="2" id="status-b[0]"><span>B</span></label> 26 <label for="status-c[0]"> 27 <input type="radio" name="status[0]" value="3" id="status-c[0]"><span>C</span></label> 28 29 <label for="status-d[0]"> 30 <input type="radio" name="status[0]" value="4" id="status-d[0]"><span>D</span></label> 31 </div> 32 </div> 33 34 <!-- テキストエリア --> 35 <div class="right"> 36 <label for="comment[0]" class="textarea-tit">コメント</label> 37 <textarea class="textarea" name="comment[0]" id="comment[0]" 38 placeholder=""></textarea> 39 </div> 40 </div> 41</div> 42<div class="add_btn-block"> 43 <button id="add_btn" type="button">+</button> 44</div> 45
JS
script.js
1 2<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> 3 4<script type="text/javascript"> 5 //+ボタンクリックでフォームを複製 6 document.getElementById('add_btn').addEventListener ('click', ()=> { 7 let 8 parent = document.querySelector ('.items'), 9 childs = parent.querySelectorAll ('.item'), 10 len = childs.length, 11 item = childs[0].cloneNode (true), 12 a = [...item.querySelectorAll ('*[for]')], 13 b = [...item.querySelectorAll ('*[name]')], 14 c = [...item.querySelectorAll ('*[id]')], 15 f = item.querySelector ('input[type="file"]'), 16 reg0 = /^.+[\d+]$/, 17 reg1 = /[\d+]$/, 18 str = `[${len}]`; 19 20 a.forEach (a=> reg0.test (a.getAttribute('for')) && a.setAttribute ('for', a.getAttribute('for').replace (reg1, str))); 21 b.forEach (a=> reg0.test (a.name) && a.setAttribute ('name', a.name.replace (reg1, str))); 22 c.forEach (a=> reg0.test (a.id) && a.setAttribute ('id', a.id.replace (reg1, str))); 23 f.value = ''; 24 parent.appendChild (item); 25}, false); 26 27 28//ルートから取得 29document.addEventListener ('change', event=> { 30 let fs = document.querySelectorAll ('input[type="file"]'); 31 let vals = [...fs].map (f=> f.value).join (", "); 32 console.log(vals); 33}); 34 35</script> 36 37<script> 38//ファイルから選択の選択ファイル名を表示 39 $('.file .fileinput').on('change', function () { 40 var file = $(this).prop('files')[0]; 41 $(this).closest('.file').find('.filename').text(file.name); 42 }); 43</script> 44
回答1件
あなたの回答
tips
プレビュー