Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从父文件夹打开文件?
假设我有这个文件树
parent other file.pdf website index.html
我想使用a标签从索引中打开file.pdf,我该怎么做?可能吗?
a
使用“特殊指令”..来“向上”遍历目录级别:
..
<a href="../other/file.pdf">file.pdf</a>
它可以重复多次以继续向上遍历文件夹层次结构。
使用双点向上一级:
是的,您只需在 href 中给出完整路径
<a href="../other/file.pdf">link</a>