Jquery实现向服务器下载文件

html页面,创建个button 




    
    上传文件
    
    



download_file.js:

$(function(){
    $("#downloadBtn").click(function(){
    var a = document.createElement('a');
    var file_name = "xxxx";
    a.href = "https://www.xxx.com/xxxxxxxx.doc";
    a.download = file_name;
    a.click();
})

 

你可能感兴趣的:(Jquery)