是否可以从父文件夹中打开文件?
假设我有这个文件树
parent
other
file.pdf
website
index.html
我想用a
标签从索引打开file.pdf,我该怎么做?有可能吗?
答案 0 :(得分:3)
使用“特殊说明”..
遍历“目录”级别:
<a href="../other/file.pdf">file.pdf</a>
可以多次重复以继续遍历文件夹层次结构。
答案 1 :(得分:1)
使用双点增加一级:
<a href="../other/file.pdf">file.pdf</a>
答案 2 :(得分:1)
是的,您只需在href中提供完整路径
<a href="../other/file.pdf">link</a>