简体   繁体   English

从本地主机下载文件

[英]download file from localhost

I want to put an image on my web and when clicked it will download a specific file. 我想将图像放在我的网络上,单击该图像将下载一个特定的文件。 is this the correct script for this purpose ? 这是正确的脚本吗? but when I click there is no response. 但是当我单击时没有任何反应。

<td><a href="file:download/D411.zip"><img src="images/download.png" title="Download"></a></td>

Thank you for the help 感谢您的帮助

尝试这个

<a href="download/abc.zip" download>Download link here</a>

I assume the download folder is in the same directory from where you are executing this snippet. 我假设download文件夹与执行此代码片段的目录位于同一目录中。

Change 更改

<a href="file:download/D411.zip">

to

<a href="download/D411.zip">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何从php的Localhost下载一个Zip文件? - How can I download a Zip file from Localhost in php? 如何使用 PHP 或 Javascript 从我的本地主机下载文件 - How to download a file using PHP or Javascript from my localhost 可以在本地主机但不能在服务器上下载文件 - can download file in localhost but not server 用php下载文件(在localhost下的apache上工作) - file download with php (working on apache under localhost) PHP文件上传并下载到本地服务器 - Php File Upload and Download to localhost Server 我如何在我的PC中使用php从其他网站动态自动自动将许多csv文件下载到localhost - How can i download many csv file dynamically automatic from other website to localhost in my pc in php Android默认浏览器不会从PC本地主机下载.txt文件 - Android default browser doesn't download a .txt file from PC localhost Laravel文件下载响应的内容类型为localhost中的text / html - Laravel file download response content type is text/html in localhost 将mysql数据导出到本地主机中的csv下载文件,但不在服务器中 - export mysql data to csv download file in localhost but not in server 使用Wordpress的PHP文件下载可在localhost上运行,但不能在实时服务器上运行 - PHP file download with Wordpress works on localhost but not live server
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM