#前提・実現したいこと
javascriptで画像のプレビューを行なっているのですが、
Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')at HTMLDocument.<anonymous> (preview.js:3)
とエラーが出てしまいます。解決策をご教授いただけると幸いです。
#該当のソースコード
js
1 document.addEventListener('DOMContentLoaded', function(){ 2 const ImageList = document.getElementById('image-list'); 3 document.getElementById('cat-image').addEventListener('change', function(e){ 4 console.log(123); 5 }); 6});
html
1 <%= form_with model: @cat, url: posts_path, local: true do |f| %> 2 <%= render 'shared/error_messages', model: f.object %> 3 <div class="img-upload"> 4 <div class="weight-bold-text"> 5 ねこ画像 6 <span class="indispensable">必須</span> 7 </div> 8 <div class="click-upload"> 9 <p> 10 クリックして画像をアップロード 11 </p> 12 <%= f.file_field :images, id:"cat-image" %> 13 </div> 14 </div> 15 <div class="offer-btn-contents"> 16 <%= f.submit "募集する" ,class:"offer-btn" %> 17 <%=link_to 'もどる', root_path, class:"back-btn" %> 18 </div> 19 <div id= "image-list"></div> 20 <% end %>
#試したこと
idの見直しなどをした。
#補足情報(FW/ツールのバージョンなど)
上記のhtmlはrails内のapp/views/posts/new.html.erbにあります。
あなたの回答
tips
プレビュー