html
1<div class="area_gallery_edit"> 2 <p class="ttl">部屋画像</p> 3 <ul class="list_gallery_edit"> 4 <li id="gallery1"> 5 <article> 6 <div class="btn_add_gallery" id="add_gallery"> 7 <div class="wrap_input"> 8 <div class="wrap_file"> 9 <?= $this->Form->input('pictures.0.file_path', ["type" => "file", "label" => false, "accept" => "image/*"]); ?> 10 <label style="background: url()"></label> 11 </div> 12 <a class="btn_delete" id="delete" name="gallery"></a> 13 </div> 14 </div> 15 </article> 16 </li> 17 </ul> 18</div> 19
jquery
1<script> 2 $('.btn_add_gallery input[type="file"]').on('change', function () { 3 var This = $(this); 4 var file = $(this).prop('files')[0]; 5 // 画像表示 6 var reader = new FileReader(); 7 reader.onload = function() { 8 This.next().attr('style', 'background: url('+reader.result+')'); 9 This.parent().addClass('check'); 10 This.parents('.list_gallery_edit').find('li:last-of-type .wrap_file').removeClass('check'); 11 This.parents('.list_gallery_edit').find('li:last-of-type label').attr('style',''); 12 } 13 reader.readAsDataURL(file); 14 }); 15</script>
上記が現在のコードです。
どなたかご教示頂けますと幸いです。
修正
+ボタンでアップロードするファイルを選ぶのですが
上記の画像の様にimgを表示したいです。
修正
html
1<div class="area_gallery_edit"> 2 <p class="ttl">部屋画像</p> 3 <ul class="list_gallery_edit"> 4 <li id="gallery1"> 5 <article> 6 <div class="btn_add_gallery" id="add_gallery"> 7 <div class="wrap_input"> 8 <div class="wrap_file"> 9 <div class="input file"><input type="file" name="pictures[0][file_path]" accept="image/*" id="pictures-0-file-path"></div> 10 <label style="background: url()"></label> 11 </div> 12 <a class="btn_delete" id="delete" name="gallery"></a> 13 </div> 14 </div> 15 </article> 16 </li> 17 </ul> 18</div>
回答2件
あなたの回答
tips
プレビュー