美文网首页vue
前端实现批量下载文件

前端实现批量下载文件

作者: 武汉前端阿杰1001 | 来源:发表于2020-10-26 16:58 被阅读0次

function downloadFile(url) {

var iframe = document.createElement('iframe')

iframe.style.display = 'none' // 防止影响页面

iframe.style.height = 0 // 防止影响页面

iframe.src = url

document.body.appendChild(iframe) // 这一行必须,iframe挂在到dom树上才会发请求

console.log(iframe)

// 5分钟之后删除(onload方法对于下载链接不起作用,就先抠脚一下吧)

setTimeout(() => {

iframe.remove()

}, 5000)

}

相关文章

网友评论

    本文标题:前端实现批量下载文件

    本文链接:https://www.haomeiwen.com/subject/cttzmktx.html