Jquery插件导出word之---html-docx.js

下载地址:

链接:https://pan.baidu.com/s/1e7zh8pXhR5h_obipuaq3zA 密码:i4pg

使用方法:

//.dts文件中:
declare namespace htmlDocx {
    export function asBlob(content:string);
}
//.ts中引入:
///<reference path="./htmldocx/html-docx-js.d.ts"/>
//html页面:
<!--docx-->
<script src="./htmldocx/build/html-docx.js"></script>
let converted = htmlDocx.asBlob(downContent);//downContent为所需下载内容的HTML标签
 saveAs(converted, "保存的文件名"+'.docx'); 




猜你喜欢

转载自blog.csdn.net/chibimarukochan/article/details/80076254