实现下载功能

1、下载功能
window.location.href = “文件链接”

2、实现批量下载功能

const downloadFile = (url) => {
  const iframe = document.createElement("iframe")
  iframe.style.display = "none" // 防止影响页面
  iframe.style.height = 0 // 防止影响页面
  iframe.src = url
  document.body.appendChild(iframe) // 这一行必须,iframe挂在到dom树上才会发请求
  setTimeout(() => {
    iframe.remove()
  }, 60 * 1000)
}

downloadFile(file_url)

原因:
window.location.href 会刷新当前页面,且只可以打开一个链接。
要实现批量下载的功能,就需要在当前页面同时打开多个链接。所以要借助iframe

你可能感兴趣的:(JS,javascript,前端,html)