获得徽章 0
- 原生js实现将文本生成Word 文档并下载
// 获取文本内容
const text = document.getElementById('copy').innerText
// 创建一个包含文本内容的 Blob 对象
const blob = new Blob([text], { type: 'text/plain' });
// 创建下载链接
const downloadUrl = URL.createObjectURL(blob);
// 创建 <a> 元素并设置属性
const link = document.createElement('a');
link.href = downloadUrl;
link.download = 'fileName.docx';
// 模拟点击下载
link.click();展开赞过评论2
![[愉快]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_21.c408154.png)
![[奸笑]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_17.bcebf79.png)