首页 > 技术文章 > 批量选中 及下载

zhangtianle 2020-10-23 15:40 原文

 

 

多个链接文件下载

  //多个下载
    function  downloadFile(url) {
        const iframe = document.createElement("iframe");
        iframe.style.display = "none";  // 防止影响页面
        iframe.style.height = 0;  // 防止影响页面
        iframe.src = url;
        document.body.appendChild(iframe);  // 这一行必须,iframe挂在到dom树上才会发请求
        // 5分钟之后删除(onload方法对于下载链接不起作用,就先抠脚一下吧)
        setTimeout(()=>{
            iframe.remove();
        }, 5 * 60 * 1000);
    }

 

推荐阅读