链接到 HTML 格式的 UNC/本地资源

发布于 2024-12-04 22:55:18 字数 547 浏览 0 评论 0原文

我想从我的html链接本地 UNC 路径(Windows网络路径)。我尝试了锚标记的许多变体,例如,

 1. <a href="\\\\somemachine\\path">link</a>
 2. <a href="file://\\somemachine\\path">link</a>
 3. <a href="file://///\\somemachine\\path">link</a>
 4. <a href="\\somemachine\path">link</a>

但是,似乎没有任何效果。我有 chromium nightly build,并且也在 Firefox 上尝试过。是否有任何可以工作的路径组合,或者如果通过javascript,这是可能的?

I want to link local UNC path (windows network path) from my html. I tried many variations in anchor tag like,

 1. <a href="\\\\somemachine\\path">link</a>
 2. <a href="file://\\somemachine\\path">link</a>
 3. <a href="file://///\\somemachine\\path">link</a>
 4. <a href="\\somemachine\path">link</a>

But, nothing seems working. I have chromium nightly build and also tried t on Firefox. Is there is any path combination that can work or if through javascript, it is possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

待"谢繁草 2024-12-11 22:55:18

之后是链接到本地​​文件系统的正确 URL 架构

file://

,然后是 UNC 路径的其余部分。您必须用正斜杠替换所有反斜杠,并添加一个 / 来表示文件系统根:

file://///somemachine/path

一种较短的变体适用于 IE 和 Google Chrome:

file://somemachine/path

The correct URL schema to link against to local file system is

file://

after that, the rest of the UNC path follows. You must replace all backslashes by forward slashes and add one / to denote the file system root:

file://///somemachine/path

A shorter variant works in IE and Google Chrome:

file://somemachine/path
溺ぐ爱和你が 2024-12-11 22:55:18

像这样:

file://somemachine//path

Like this:

file://somemachine//path
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文