在网页中添加链接到 Windows 资源管理器窗口的链接吗?

发布于 2024-09-12 13:23:13 字数 336 浏览 2 评论 0原文

我的客户想要添加网页链接。单击该链接后,Windows 资源管理器将打开并转到 FTP 站点(例如,ftp://ftp.domain。 com/)。我尝试了以下 HTML

<a href="ftp://ftp.domain.com/">ftp://ftp.domain.com/</a>

不幸的是,这将在网络浏览器中打开 FTP 站点,该站点仅支持下载但不支持上传。

我更喜欢跨浏览器解决方案,但仅限 IE 的解决方案也可以。

My client wants to add a link to a webpage. When the link is clicked, Windows Explorer will open and go to an FTP site (e.g., ftp://ftp.domain.com/). I tried the following HTML

<a href="ftp://ftp.domain.com/">ftp://ftp.domain.com/</a>

Unfortunately, this will open the FTP site in the web browser which supports downloading only but not uploading.

I prefer a cross-browser solution, but an IE-only solution would be fine as well.

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

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

发布评论

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

评论(2

你与清晨阳光 2024-09-19 13:23:13

您确定匿名用户确实可以上传文件吗?
您可以使用以下方法提供用户名/密码组合:

<a href="ftp://username:[email protected]">

如果失败,您只能编写一个基于 Web 的 FTP 客户端。

编辑: AFAIK 用于打开协议(在本例中为 FTP)的程序是由浏览器定义的,这是您无法更改的。

Are you sure anonymous users can actually upload files?
You can supply a username/password combination by using:

<a href="ftp://username:[email protected]">

If that fails, there's nothing you can do short of writing a web-based FTP client.

EDIT: AFAIK What program is used to open a protocol (FTP in this case) is defined by the browser and that's something you can't change.

原来是傀儡 2024-09-19 13:23:13

如果您希望能够上传具有写入权限的指定凭据:

<a href="ftp://username:[email protected]/">ftp://ftp.domain.com/</a>

但我不确定 IE 是否接受这一点。

If you want to be able to upload specify credentials that have write permission:

<a href="ftp://username:[email protected]/">ftp://ftp.domain.com/</a>

But i'm not sure IE accepts that.

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