我需要在网站上显示PDF并将其嵌入内联。
如果data属性是local,但不是remote,则以下代码有效。我只是用一个大灰盒代替PDF。只要它适用于所有浏览器,我就会对任何解决方案持开放态度。我们正在使用Rails 3和jQuery。
<object data='https://remotesite.com/uploads/pdf/5/mypdf.pdf' type='application/pdf' width='100%' height='100%'>
<p>
It appears your Web browser is not configured to display PDF files.
No worries, just <a href='https://remotesite.com/uploads/pdf/5/mypdf.pdf'>click here to download the PDF file.</a>
</p>
</object>
谢谢, 尼克
答案 0 :(得分:0)
我试过这个。工作良好。只是您支持的链接不正常。 (我无法达到\下载pdf其他方式) 但你也可以试试这个:
<iframe src="http://people.seas.harvard.edu/~chong/pubs/oopsla04.pdf" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
您的代码在我用于iframe的pdf中运行良好。
(我在chrome和Internet Explorer上测试过)