emma1278-my / HorrorBurn

0 stars 0 forks source link

プロフィール画像のプレビュー機能 #123

Open emma1278-my opened 3 months ago

emma1278-my commented 3 months ago
- [x] app/javascript/packs/profiles.jsファイルを作成

$(function () { function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $("#img_prev").attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } $("#image-select-btn").change(function () { readURL(this); }); });



https://qiita.com/takuma_0625/items/999a639e8250120b0ac6