锚下载链接无法在Firefox中运行

时间:2013-02-06 08:30:26

标签: javascript html internet-explorer google-chrome firefox

我用过这个

<A HREF="/admin/con/image/StudentImportFileTemplate_Create.csv" download="StudentImportFileTemplate_Create.csv">Download</A>

我为chrome添加了download属性,但firefox不支持

这在IE中工作正常并且Chrome文件正在下载任何人都可以解释我如何让它也适用于Firefox。

2 个答案:

答案 0 :(得分:0)

只需这样写。

<a href="/admin/con/image/StudentImportFileTemplate_Create.csv">Download the document</a>

答案 1 :(得分:0)

您实际上不需要使用任何此类属性来启动文件下载。

只需使用:

<a href="/admin/con/image/StudentImportFileTemplate_Create.csv">Download</a>

如果您的CSV正在打开而不是下载并且仍想使用下载属性,那么这是正确的方法:

http://davidwalsh.name/download-attribute