当前位置:  开发笔记 > 编程语言 > 正文

使用Javascript下载文件

如何解决《使用Javascript下载文件》经验,为你挑选了3个好方法。

有这个Excel文件,我希望用户能够从我的服务器下载.单击"下载"按钮后,必须有一种简单的方法来启动文件下载...但我不知道如何实现这一点.

到目前为止我有这个:(VBscript和ASP)





Set fs=Server.CreateObject("Scripting.FileSystemObject")

    if (fs.FileExists("c:\file.xls"))=true then   'fake filename D:
        response.write("
") else response.write("Masterfile not found.
") end if set fs=nothing

javascript函数为空.



1> Andreas Grec..:

实际上,如果你想要一种"更有效"(和更性感)的方式,请使用:

location.href = your_url;

这样,您可以将编译器保存一段时间,location直到达到window对象的原型链.



2> Kablam..:

你不会相信这一点.找到了...

function exportmasterfile()
{   var url='../documenten/Master-File.xls';    
    window.open(url,'Download');  
}

对不起大家!


你为什么说对不起?如果这是您使用的解决方案,为什么不标记为这样?

3> Nick Retalla..:

如果您的服务器配置为触发下载该mime类型的文件,那么就像这样简单:

window.location = your_url

推荐阅读
勤奋的瞌睡猪_715
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有