在我的HTML表单中,我输入了类型文件,例如:
<input type="file" multiple>
Run Code Online (Sandbox Code Playgroud)
然后我通过单击该输入按钮选择多个文件.现在我想在提交表单之前显示所选图像的预览.如何在HTML 5中做到这一点?
我想在上传之前显示图像预览,因为我使用下面给出的代码.
它适用于Firefox,但不适用于IE8
<%= image_tag @image, :id=>"preview-photo" %>
<%= file_field 'image','photo', :onchange => "preview(this);" %>
function preview(this) {
document.getElementById("preview-photo").src = this.value;
return;
}
Run Code Online (Sandbox Code Playgroud)
有没有解决方案在IE8和其他浏览器中预览图像?