如何链接到 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>