Rails javascript – 上传前的图片预览

前端之家收集整理的这篇文章主要介绍了Rails javascript – 上传前的图片预览前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在上传之前显示图像预览,因为我正在使用下面给出的代码.

它适用于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;
}

是否有任何解决方案来预览图像在IE8和其他浏览器?

解决方法

我使用 https://github.com/blueimp/jQuery-File-Upload文件上传.

在这个jQuery插件的规范中,您可以阅读:

Preview images can be loaded and displayed for local image files on browsers supporting the URL or FileReader interfaces.

IE8不兼容HTML5,因此与FileReader不兼容.你应该使用flash或者朋友来实现.

Firefox符合HTML5

原文链接:https://www.f2er.com/js/155186.html

猜你在找的JavaScript相关文章