Heim > Fragen und Antworten > Hauptteil
Ähnlich dem Effekt im Bild verwende ich jetzt ein PDF-Plugin namens objectPDF.js. Nach der Verwendung sind die DOM-Elemente hinter dem PDF-Vorschau-Plugin verschwunden.
天蓬老师2017-05-19 10:11:10
确定你用对了 PDFObject 了吗?
Create a container to hold your PDF
<p id="example1"></p>
Tell PDFObject which PDF to embed, and where to embed it
<script src="/js/pdfobject.js"></script> <script>PDFObject.embed("/pdf/sample-3pp.pdf", "#example1");</script>
You can optionally use CSS to specify visual styling, including dimensions, border, margins, etc.
<style> .pdfobject-container { height: 500px;} .pdfobject { border: 1px solid #666; } </style>