欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

html页面中如何显示pdf文件

程序员文章站 2022-05-25 21:17:52
...

今天,客户有个新的需求,需要在html页面中嵌入pdf文件,实现在线阅读。后来在网上找到了两种解决方法。
方法一:使用 和

代码如下:

<object data="http://yoursite.com/the.pdf" type="application/pdf" width="750px" height="750px">
    <embed src="http://yoursite.com/the.pdf" type="application/pdf">
        <p>This browser does not support PDFs. Please download the PDF to view it: <a href="http://yoursite.com/the.pdf">Download PDF</a>.</p>
    </embed>
</object>

方法二:PDFObject
关于PDFObject,大家可以阅读这个文档:https://pdfobject.com/

具体实现代码:

<div id="example1"></div>
<script src="/js/pdfobject.js"></script>
<script>PDFObject.embed("/pdf/sample-3pp.pdf", "#example1");</script>