前端批量下载后台表格

$(function () {

   alert('开始自行js代码');
  var paths = ["xmanager.rar","201908192041687.zip","201908191635835.msi","instantclient_12_1.zip"];
 
  var urls = ["http://localhost:8083/downUp/downfiles/xmanager.rar","http://localhost:8083/downUp/downfiles/201908192041687.zip","http://localhost:8083/downUp/downfiles/201908191635835.msi"];
  
  
  //download();
  //loadFilesWin(paths)
  for (var i = 0; i < urls.length; i++){
	  downloadFile11(urls[i]);
  
  }

})

function downloadFile11(url){
//创建标签;
const iframe = document.createElement(“iframe”);
//该标签不显示;
iframe.style.display = “none”; // 防止影响页面
//防止影响页面;
iframe.style.height = 0; // 防止影响页面
iframe.src = encodeURl(url); // 解决url乱码问题
document.body.appendChild(iframe); // 这一行必须,iframe挂在到dom树上才会发请求

// 5分钟之后删除(onload方法对于下载链接不起作用,就先抠脚一下吧)
setTimeout(function (){
iframe.remove();
}, 5 * 60 * 1000);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值