我想将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
结果
答案 0 :(得分:0)
您可以尝试使用嵌入或对象标签,如下所示:
<html>
<body>
<embed src="/3.pdf" width="500" height="375">
</body>
</html>