我需要在网站上显示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>
我试试这段代码
<iframe src="http://people.seas.harvard.edu/~chong/pubs/oopsla04.pdf" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
但不能使用阿拉伯语文件,例如“ملفالمتسابقين。pdf” 谢谢,