【发布时间】:2014-12-07 18:08:51
【问题描述】:
所以在我的应用中,用户可以将图片上传到他们的博客。现在,当他们选择文件时,我想立即显示上传图像的缩略图,以便他们在按表单上的“提交”之前知道他们选择了哪个图像。
我该怎么做?
这是我当前的代码:
<hr>
<h4>Name your blog<br />
& upload an image for it</h4><br />
<%= f.text_field :name, class: "blog-name", placeholder: "Name it here" %><br />
<%= f.file_field :image %>
----> I'd like to show the image here, instantly <----
<%= f.submit "Next", class: "next-button" %>
<br><br>
</div>
<% end %>
【问题讨论】:
标签: jquery css ruby-on-rails ruby-on-rails-4