我试图在上传之前显示图片预览,因为我使用下面给出的代码..
它可以与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和其他浏览器中预览图像?