如何在Internet Explorer中显示嵌入式PDF?

时间:2019-04-05 09:58:50

标签: html angular

我正在使用embed标签在浏览器中显示pdf文件。但是它无法在IE中显示。如何在所有浏览器中显示它。谢谢

I using html, angular 4....
my code:
<div class="modal-content" style="overflow: hidden;">
    <embed type="application/pdf" [src]="item.url" frameborder="0"</embed>
</div>

1 个答案:

答案 0 :(得分:0)

尝试一下:

<embed [src]="item.url" type="application/pdf" width="100%" height="600px" />

您可以在此页面中查看:https://www.codexworld.com/embed-pdf-document-file-in-html-web-page/