js下载

download(name, url) {

  const ele = document.createElement("a");
  ele.setAttribute("href", url);
  ele.setAttribute("target", "_blank");
  ele.setAttribute("download", name);
  ele.style.display = "none";
  document.body.appendChild(ele);
  ele.click();
  document.body.removeChild(ele);
},

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