如何在博客中显示已存储在服务器中的pdf文件

时间:2014-07-30 10:23:14

标签: pdf iframe blogger pdfview

我想在博客中显示pdf网址(例如:http://www.newforests.net/wp-content/uploads/2011/01/sample_pdf.pdf)而无需在Google文档中上传。

如果我在google docs上传相同的pdf,如果我在post html中提供嵌入式链接

<iframe height="500" src="https://drive.google.com/file/d/0B-A9jsNhASM9VmRra3J6WTZmZVU/edit?usp=sharing" width="750"></iframe>

我可以在博主中看到pdf文件。它的工作正常。同样,我想在博客中显示已定义服务器URL的pdf文件,而无需在驱动器中上载pdf文件。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

使用您自己的pdf替换Google Drive pdf应该有效:

<iframe height="500" 
src="http://www.newforests.net/wp-content/uploads/2011/01/sample_pdf.pdf" 
width="750"></iframe>