如何在HTML中嵌入外部网站的pdf?

时间:2016-09-11 17:54:04

标签: html pdf

我想将来自外部网站的pdf(链接到pdf = http://flightaware.com/resources/airport/SAN/APD/AIRPORT+DIAGRAM/pdf)嵌入到我的网站上。我该怎么做?

我试过了:

<iframe src="http://flightaware.com/resources/airport/SAN/APD/AIRPORT+DIAGRAM/pdf" width="500" height="700">

但它没有用。

由于

1 个答案:

答案 0 :(得分:0)

以下在chrome和firefox中运行良好:

<html>
<body>
test
<iframe src="http://flightaware.com/resources/airport/SAN/APD/AIRPORT+DIAGRAM/pdf" width="500" height="700"></iframe>
</body>
</html>
相关问题