嵌入 PDF,无需工具栏和滚动条。为什么这不起作用?
我有以下代码,但它不起作用,
<embed width="100%" height="900" src="T:\D\CODE1000.pdf#zoom=90&pagemode=none&scrollbar=0&toolbar=0&statusbar=1&messages=0&navpanes=0"/>
当我使用对象标签时,我仍然可以看到滚动条、工具栏等,pdf根本不显示。
我使用的是IE6
I have the following code but it does not work, I can still see the scroll bars, toolbar etc
<embed width="100%" height="900" src="T:\D\CODE1000.pdf#zoom=90&pagemode=none&scrollbar=0&toolbar=0&statusbar=1&messages=0&navpanes=0"/>
when I use the object tag, the pdf does not show at all.
I am using IE6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的浏览器不知道本地路径。您应该将 pdf 放在您的网络服务器上,并修改该位置的
src=""
路径。它应该类似于
src="http://www.mywebsite.com/pfds/CODE1000.pdf#blablabla"
。有关网络路径的更多信息,请访问:http://www.boogiejack.com/server_paths.html
想象一下任何网站都可以访问您的本地硬盘。可怕的...
Your browser is not aware of local paths. You should put the pdf on your webserver and modify the
src=""
path to that location.It should be something like
src="http://www.mywebsite.com/pfds/CODE1000.pdf#blablabla"
.More info about web paths can be found here: http://www.boogiejack.com/server_paths.html
Imagine that any website would have access to your local harddrive. Scary...