Firefox不显示嵌入式pdf

时间:2019-09-20 11:01:12

标签: html http pdf firefox

我想将pdf内联显示到iframe中。它可以在Chrome上运行,但不能在Firefox(最新版)上运行。

HTML

<iframe src="/3.pdf"></iframe>

服务器HTTP响应(请参阅内容配置:内联)

HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
vary: Origin
access-control-allow-credentials: true
content-disposition: inline; filename=3.pdf
content-type: application/pdf
date: Fri, 20 Sep 2019 10:56:36 GMT
connection: close
transfer-encoding: chunked

结果

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试使用嵌入或对象标签,如下所示:

<html>
<body>
    <embed src="/3.pdf" width="500" height="375">
</body>
</html>