链接到 HTML 格式的 UNC/本地资源
我想从我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
之后是链接到本地文件系统的正确 URL 架构
,然后是 UNC 路径的其余部分。您必须用正斜杠替换所有反斜杠,并添加一个
/
来表示文件系统根:一种较短的变体适用于 IE 和 Google Chrome:
The correct URL schema to link against to local file system is
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:A shorter variant works in IE and Google Chrome:
像这样:
Like this: