【发布时间】:2013-05-27 07:09:26
【问题描述】:
我希望在 html 中显示一个使用 base64 编码嵌入的 pdf 文件。 下面是我为此编写的代码。 pdf 文件在 Chrome 和 firefox 中显示,但在 Internet Explorer 中不显示。
知道如何让它在 IE 中运行吗? Adobe Reader 插件对我来说在 IE 中正常工作。
<iframe src="data:application/pdf;base64,baseEncodedString"></iframe>
由于字符限制,我无法粘贴基本编码字符串。但它的大小为 401676 个字符。
【问题讨论】:
-
IE 在使用 base64 显示元素时有限制。看看stackoverflow.com/questions/12791952/…上的一些cmets@
-
为什么首先要对其进行base64编码?