我正在加载一个托管在 Apache 服务器中的 OS X 上的 html 文件,在该文件中我链接到同一目录中的另一个 html 文件,如下所示:
<a href="2ndFile.html"><button type="submit">Local file</button>
这行得通。但是(由于太长的原因无法进入)我正在尝试使用 file: 方案,但是我无法得到任何工作。这是我使用文件重写上述行的方式:
<a href="file://192.168.1.57/~User/2ndFile.html"><button type="submit">Local file</button>
(192.168.1.57 是我当前的 IP 地址)
将其更改为以下内容也不起作用:
<a href="file://Name-Of-MacBookPro/~User/2ndFile.html"><button type="submit">Local file</button>
但是找不到文件,应该如何使用file:scheme来指定呢?