推荐将PDF嵌入到HTML中的方法?
在HTML中嵌入PDF的推荐方法是什么?
Adobe对此有何看法?
在我的情况下,PDF即时生成,因此无法在冲洗之前将其上传到第三方解决方案。
可能最好的方法是使用PDF.JS库。 这是一个用于PDF文档的纯HTML5 / JavaScript渲染器,没有任何第三方插件。
在线演示:http://mozilla.github.com/pdf.js/web/viewer.html
GitHub:https://github.com/mozilla/pdf.js
这很简单,很简单,不需要任何第三方脚本:
<embed src="http://example.com/the.pdf" width="500" height="375" type='application/pdf'>
更新(1/2018):
Android上的Chrome浏览器不再支持PDF嵌入。 您可以使用Google Drive PDF查看器解决此问题
<embed src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://example.com/the.pdf" width="500" height="375">
您也可以为此使用Google PDF查看器。 据我所知,这不是一个官方的谷歌功能(我对此是错误的吗?),但它对我来说非常好,很顺利。 您需要在以前的某处上传您的PDF,并使用其URL:
<iframe src="http://docs.google.com/gview?url=http://example.com/mypdf.pdf&embedded=true" style="width:718px; height:700px;" frameborder="0"></iframe>
重要的是它不需要Flash播放器,它使用JavaScript。
链接地址: http://www.djcxy.com/p/935.html上一篇: Recommended way to embed PDF in HTML?
下一篇: Why is this statement with bitwise operators the same as this if statement?