我将测试pdf
文件放在dropbox
中,并获得了公开链接:
https://dl.dropboxusercontent.com/u/6257603/pdfs/pdf01.pdf
我想在我的html页面中显示(嵌入)。 (我想创建一个树结构化的多个链接来加载上传的pdf
以显示给用户)
我得到了一个答案,pdf
可以嵌入html
文件中:
http://www.webdeveloper.com/forum/showthread.php?152923-PDF-within-a-DIV
但是我没有看到任何输出。这是我的尝试:
div {
border : 1px solid red;
height:200px;
overflow:auto;
}
<div>
<object data="https://dl.dropboxusercontent.com/u/6257603/pdfs/pdf01.pdf" type="application/pdf" width="300" height="200">
<embed src="https://dl.dropboxusercontent.com/u/6257603/pdfs/pdf01.pdf" type="application/pdf">
</object>
</div>
答案 0 :(得分:1)
您应该将代码更改为:
<div>
<object data="https://dl.dropboxusercontent.com/u/6257603/pdfs/pdf01.pdf" type="application/pdf" width="300" height="200">
<embed src="https://dl.dropboxusercontent.com/u/6257603/pdfs/pdf01.pdf" type="application/pdf">
</object>
</div>