链接到下载文件不起作用

时间:2014-11-13 18:30:27

标签: html twitter-bootstrap button hyperlink

我正在尝试获取一个下载文件的链接(按钮上有一个类引用的引导程序。我所使用的代码只适用于Chrome。我需要它才能与Firefox和IE浏览器一起使用。

这是我的代码:

<button type="button" class="btn btn-primary btn-xs"><a style="color:#fff;" target="_blank" href="http://pathtodirectory/FileName.ext" >
     Download</a></button>

我尝试添加

download

但这没效果。

为什么这只适用于Chrome?并且有一种很好的方法可以在IE和Firefox中实现它吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

您不需要按钮元素,只需使用锚元素上的类。

<a style="color:#fff;" class="btn btn-primary btn-xs" target="_blank" href="http://pathtodirectory/FileName.ext">Download</a>