我想将来自外部网站的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">
但它没有用。
由于
答案 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>