雷达智富

首页 > 内容 > 程序笔记 > 正文

程序笔记

下载文本文件javascript

2024-08-21 67

下载文本文件javascriptdownload text file javascript
const downloadTxtFile = () => {
    const element = document.createElement("a");
    const file = new Blob([text], {
      type: "text/plain",
    });
    element.href = URL.createObjectURL(file);
    element.download = "myFile.txt";
    document.body.appendChild(element);
    element.click();
  };
更新于:4个月前
赞一波!2

文章评论

评论问答