前提・実現したいこと
すでにフィームが1つ表示状態から
ボタンをクリックすることによって、フォームを複製したいです。
現状下記のように、実装をしました。
見た目上は、+クリックでフォームが複製されるのですが、
元のフォームと、複製されたフォームが同じフォームと判断され分けて入力ができない状態です
(ラジオボタン だと複製したフォームをで選択すると元のラジオボタン が外れる)
nameやidに[0]と記載している部分を0,1,2,3・・・という風に連番にする必要があるかと思うのですが、
記載の方法ではうまく動かず、こちらで質問をさせていただきました。
有識者の方がいらっしゃいましたら、教えていただけますと幸いです。
どうぞ、宜しくお願い致します。
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" 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 $(function () { 7 8 $('button#add_btn').click(function () { 9 10 var tr_form = '' + 11 '<div class="item">' + 12 '<div class="left"> <div class="file"> <label class="file_wrap"> <input type="file" name="file" class="fileinput">ファイルを選択</label> <span class="filename"></span> </div><label class="text" for="photo_area[0]">写真のタイトル</label> <input type="text" id="photo_area[0]" name="photo_area[0]" placeholder="" value=""> <label class="text">写真の評価</label> <div class="radio"> <label for="status-a[0]"> <input type="radio" name="status[0]" value="1" id="status-a[0]"><span>A</span></label> <label for="status-b[0]"> <input type="radio" name="status[0]" value="2" id="status-b[0]"><span>B</span></label> <label for="status-c[0]"> <input type="radio" name="status[0]" value="3" id="status-c[0]"><span>C</span></label> <label for="status-d[0]"> <input type="radio" name="status[0]" value="4" id="status-d[0]"><span>D</span></label> </div></div><div class="right"> <label for="comment[0]" class="textarea-tit">コメント</label> <textarea class="textarea" name="comment[0]" id="comment[0]" placeholder=""></textarea> </div></div>' + 13 '</div>'; 14 15 $(tr_form).appendTo($('.items')); 16 17 }); 18 19 20 }); 21 22</script>
追記
ファイル選択から選択したファイル名を表示するための実装です。
下記記載したところ、元々表示されている1つ目の「ファイル選択」ではうまく動作するのですが、
+を押して追加した2つ目以降だとうまく動作がされない状況です。。。
※<input type="file" name="file[0]" class="fileinput">への変更は済です。
js
1$('.file .fileinput').on('change', function () { 2 var file = $(this).prop('files')[0]; 3 $(this).closest('.file').find('.filename').text(file.name); 4 });
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/28 10:25
2021/02/28 10:31
2021/02/28 10:49
2021/02/28 11:04
2021/02/28 11:34
2021/02/28 11:43
2021/02/28 15:06