📝

准备开始生成论文

请在左侧填写论文标题、选择学科和学位级别

const html = '' + title + '' + content + ''; const blob = new Blob(['\ufeff', html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = title + '.doc'; link.click(); } // 页面加载时渲染历史记录 document.addEventListener('DOMContentLoaded', renderHistory);