将外部pdf文档加载到div中
问题描述:
您建议什么是将pdf文档加载到div的最有效方法?
what would you recommend to be the most effective way to load a pdf document into a div?
考虑div的大小(pdf必须缩放以适合div)以及如何显示pdf中的多个页面.
taking into consideration the size of the div (the pdf must scale to fit the div) and how the multiple pages in the pdf would be displayed.
非常感谢!
答
尝试一下:
<div>
<object data="test.pdf" type="application/pdf" width="300" height="200">
alt : <a href="test.pdf">test.pdf</a>
</object>
</div>