Hello, this is a H3 tag
A paragraph
📅  最后修改于: 2022-03-11 15:01:18.457000             🧑  作者: Mango
Hello, this is a H3 tag
A paragraph
// javascript
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};
$('#cmd').click(function () {
doc.fromHTML($('#content').html(), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('sample-file.pdf');
});