所有浏览器上的 Rails 图像预览

发布于 2024-11-19 17:09:59 字数 383 浏览 3 评论 0原文

在所有浏览器中保存之前是否可以预览图像(上传时)。 我已经为 Firefox 实现了这种方式:

document.getElementById("preview-photo").src = what.files[0].getAsDataURL();

这工作得很好,并且,对于 IE 来说,

document.getElementById("preview-photo").src = what.value;

这个讲解工作以及与 Chrome 和 Safari 等其他浏览器相同的情况。 目前我只能在 Firefox 中看到预览,其他浏览器不显示预览。

请告诉我如何解决这个问题。

谢谢

Is it possible to preview image (on upload) before saving across all the browsers.
I have implemented this way for Firefox:

document.getElementById("preview-photo").src = what.files[0].getAsDataURL();

this works fine, and, for IE

document.getElementById("preview-photo").src = what.value;

this docent work and same case with other browsers like Chrome and Safari.
Currently I can see preview only in Firefox, other browsers not showing preview.

Please, advise me how to work on this.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2024-11-26 17:09:59

由于大多数浏览器中的安全设置阻止文件控制访问,因此没有完全跨浏览器的方法来执行此操作。

这可能表明 FF3、IE7 和少数其他情况的解决方法:

如何通过 JavaScript 上传前上传预览图片

There's no completely cross-browser way to do this due to security settings in most browsers preventing file control access.

This may indicate a work-around for FF3, IE7, and a handful of other cases:

How to upload preview image before upload through JavaScript

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文