一、利用 html2canvas实现HTML页面截图
1.HTML页面引入 html2canvas.min.js
2.定义一个截图的触发按钮
1 | <button onclick="exprotImg();">导出图片</button> |
3.js代码
1 | function exprotImg() { |
二、利用 html2pdf 实现页面导出pdf
1.页面导入 html2pdf.bundle.min.js
2.导出按钮
1 | <button onclick="exprotPdf();">导出pdf</button> |
3.js代码
1 | function exprotPdf() { |