原生js实现将文本生成Word 文档并下载

292 阅读1分钟
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();