如何在HTML中链接到本地/intranet文件



如何在HTML中链接到本地/intranet文件?

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

这是HTML呈现(它是服务器上的RubyonRails)。

<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:Ruby193docbookofruby.pdf">C:Ruby193docbookofruby.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>

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

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

file://////Z:/filepath/filename.pdf

相关内容

  • 没有找到相关文章

最新更新