我正在尝试显示在其他网站上可用的pdf。如何在不使用文件重定向到网站的情况下使用网址
答案 0 :(得分:2)
Number of solution from Scalified
有三种将PDF注入HTML页面的主要选项:
使用HTML标记iframe,嵌入和对象:
<iframe src="https://scalified.com/valid-document-url.pdf" width="100%" height="100%"></iframe>
<embed src="https://scalified.com/valid-document-url.pdf" width="100%" height="100%"></embed>
<object src="https://scalified.com/valid-document-url.pdf" width="100%" height="100%"></object>