在html5中嵌入Pdf

前端之家收集整理的这篇文章主要介绍了在html5中嵌入Pdf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在HTML文档中嵌入一个pdf,但只有Chrome似乎正在将浏览器的其他部分用于需要插入或需要用户单击不是我想要的链接.这是我的code.help请
<object data="pdfFiles/interfaces.pdf" type="application/pdf">
                <embed src=" pdfFiles/interfaces.pdf" type="application/pdf">&nbsp; </embed>
                    alt :<a href="pdfFiles/interfaces.pdf">
                </object>

解决方法

以下是每个浏览器可以使用的代码
<embed src="pdfFiles/interfaces.pdf" width="600" height="500" alt="pdf" pluginspage="http://www.adobe.com/products/acrobat/readstep2.html">

测试了Firefox和chrome

原文链接:https://www.f2er.com/html5/168768.html

猜你在找的HTML5相关文章