Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 TCPDF 生成 PDF 并将它们显示在我生成它的页面中。我已经让用户选择将 pdf 存档到文件中。在我的应用程序中有一个部分显示所有存档文件。所以我的问题是,我如何使用 TCPDF 来显示现有的 PDF 文件并将其显示在 iFrame 中。
先感谢您
您可以使用<embed>iframe 页面的标签来阻止下载。
<embed>
链接 tcpdf.php 的src属性<embed>
src
<html> <body> <embed type="application/pdf" src="http://yoursite.com/tcpdf/tcpdf.php″ width="100%" height="100%"> </embed> </body> </html>