无法使用 href 在 HTML 中的相对路径中加载文件
我正在尝试提供本地 pdf 文件的超链接。我发现如果我使用绝对路径,我的网站将使用新选项卡打开 pdf。但是,当我尝试使用相对路径时,控制台会发出警告“未找到与路径匹配的位置”
此工作:
<a href="E\Project\assets\test.pdf" target="_blank">PDF</a>
这不起作用
<a href="..\assets\test.pdf" target="_blank">PDF</a>
I'm trying to give a hyperlink to a local pdf file. I found out if I use an absolute path, my site will open the pdf with a new tab. However, when I try to use a relative path, the console gives a warning "No match found for location with path "
This work:
<a href="E\Project\assets\test.pdf" target="_blank">PDF</a>
This doesn't work
<a href="..\assets\test.pdf" target="_blank">PDF</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两个点
..
表示向上一个文件夹,将其转换为绝对链接意味着它正在寻找E\assets\test.pdf
。尝试将其更改为.\assets\test.pdf
。Two dots
..
means go one folder up, translating it to an absolute link would mean it's looking forE\assets\test.pdf
. Try changing it to.\assets\test.pdf
.