HTML 下载字符串为文本文件

2021-02-03  本文已影响0人  ShoneSingLone

MIME_types 媒体类型

function downloadString(text, fileType, fileName) {
  var blob = new Blob([text], { type: fileType });

  var a = document.createElement('a');
  a.download = fileName;
  a.href = URL.createObjectURL(blob);
  a.dataset.downloadurl = [fileType, a.download, a.href].join(':');
  a.style.display = "none";
  document.body.appendChild(a);
  a.click();
  document.body.removeChild(a);
  setTimeout(function() { URL.revokeObjectURL(a.href); }, 1500);
}

downloadString("a,b,c\n1,2,3", "text/plain", "String.txt")
上一篇 下一篇

猜你喜欢

热点阅读