Javascript重命名文件下载
问题描述:
我想要下载一个网络文件,但当下载对话框打开时,文件名被重命名。
I want to be able to download a web file, but when the download dialog open, the filename is renamed.
Ex:File: http://< server> /< site> /test.txt
当我点击下载文件,下载对话框打开,文件名为: test001.txt
。
and when I click to download the file, download dialog open with the file name: test001.txt
.
我该怎么办?
答
如InviS所示,现在链接上有一个下载
属性。
As InviS suggests, now there's a download
attribute on links.
示例:
<a href="http://server/site/test.txt" download="test001.txt">Download Your File</a>