无法使用 href 在 HTML 中的相对路径中加载文件

发布于 2025-01-10 01:46:47 字数 307 浏览 0 评论 0原文

我正在尝试提供本地 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞陪衬 2025-01-17 01:46:47

两个点 .. 表示向上一个文件夹,将其转换为绝对链接意味着它正在寻找 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 for E\assets\test.pdf. Try changing it to .\assets\test.pdf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文