1

如何链接到 HTML 中的本地/Intranet 文件?

我已经看到了这个和许多其他问题,但它对我不起作用。不使用 Chrome 也不使用 IE 11。不适用于 PDF、WAV 或 MP3。不单击,不右键单击/在新选项卡/窗口中打开,不拖动。

这是 HTML 渲染(它是服务器上的 Ruby on Rails)。

<table cellspacing="2" cellpading="0px" border="1">
  <thead>
    <tr>
      <th>Verbiage</th>
      <th>Tags</th>
      <th>Language</th>
      <th>Talent</th>
      <th>Audio</th>     
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
      <tr>
        <td>A book</td>
        <td></td>
        <td>English</td>
        <td>Joe</td>
        <td>
        <a href="file:///C:\Ruby193\doc\bookofruby.pdf">C:\Ruby193\doc\bookofruby.pdf</a>
        </td>
        <td><a href="/prompts/12">Show</a></td>
        <td><a href="/prompts/12/edit">Edit</a></td>
        <td><a data-confirm="Are you sure?" data-method="delete" href="/prompts/12" rel="nofollow">Destroy</a></td>
      </tr>
  </tbody>
</table>
4

1 回答 1

1

当我想回答同样的问题时,我发现了这篇文章。以为我会发布对我有用的答案,以防它对其他人有所帮助。

六个斜线对我有用,而三个没有。我的目录字母后也不需要反斜杠。

file://////Z:/filepath/filename.pdf
于 2015-05-20T10:28:54.943 回答