问题描述:
使用<iframe>标签嵌入pdf文件,在谷歌浏览器中无法显示,提示已被屏蔽
源码:
<iframe src="https://example.com/path/to/your.pdf" style="width:100%; height:800px;"></iframe>
问题截图:
解决方案:
源码更改为:
<embed src="https://example.com/path/to/your.pdf" width="100%" height="800px" type="application/pdf">
预览效果: