网站 - 下载链接
我只是在玩弄 HTML,并且想要创建一个链接来访问磁盘上特定位置(而不是网页源代码所在的磁盘)中的文件。
我尝试执行以下操作:
但这无法访问该文件并给出错误。
可能是什么问题,我该如何解决?
谢谢!
I'm just playing around with HTML, and wanted to create a link to access a file in a particular location on the disk (not on the disk where the source code of the web page is located).
I have tried to do the following:
<a href="D:\MyDoc.pdf">Download My File</a>
but this cannot access the file and gives an error.
What can be the problem, and how do I fix it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效!只需在链接 URL 中添加 file:///
这仅在您离线运行应用程序时才有效。
This should work! Just add file:/// in the link URL
This will only work if you run the Application offline.
没有办法用纯 html 来做到这一点。您将需要使用动态 Web 技术,例如 php 或 Asp.net。
如果您只需更改该链接的路径就可以从 Web 服务器下载任何您想要的文件,您能想象安全问题吗?
There is no way you can do this with pure html. You will need to use a dynamic web technology such as php or Asp.net.
Can you imagine the security issues if you could download any file you wanted off the web server just by changing path of that link?