您的位置:首页 > Web前端 > HTML

pdf显示在html页面上

2018-01-21 20:48 176 查看
关于pdf显示在html页面上,其实大致可以分为两类方案
一:就是通过使用pdfobject.js插件
github地址:文件地址
下面是js代码
<script src="pdfobject.min.js"></script>
<script>
PDFObject.embed("new.pdf", "#example1");
</script>下面是html代码
<div id="example1"></div>

二:就是单纯的标签嵌入,没有js,主要有下面三种标签构成

<object data="new.pdf" type="application/pdf" width="300px" height="300px"></object>
<embed src="new.pdf" type="application/pdf" width="100%" height="100%"></embed>
<iframe src="new.pdf" width="100%" height="100%"></iframe>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: