<返回更多

二十行代码实现JavaScript在本地生成pdf文件

2019-07-01    
加入收藏
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello world</title>
</head>
<body>
<h1>Hello world</h1>
<script type="text/JAVAscript" src="jspdf.debug.js"></script>
<script type="text/JavaScript">
// https://www.sitepoint.com/generating-pdfs-from-web-pages-on-the-fly-with-jspdf/
var pdf = new jsPDF();
pdf.text(30, 30, 'Hello world!');
pdf.text(40, 40, 'Another line!');
pdf.save('hello_world.pdf');
</script>
</body>
</html>
将后缀重命名成.js
[jspdf.debug.pdf](https://github.com/i042416/KnowlegeRepository/files/967487/jspdf.debug.pdf)
 

pdf.js下载:

二十行代码实现JavaScript在本地生成pdf文件
声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>