我正在使用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>
答案 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/