Export HTML + CSS to PDF using Javascript

2019-07-30 13:12发布

问题:

I want to export a part of my html code to pdf, for this I am using the following code :

<script language = "JAVASCRIPT">
var doc = new jsPDF();
var specialElementHandlers = {
    '#editor': function (element, renderer) {
    return true;
    }
};
$('#download').click(function () {
    doc.fromHTML($('#mytable').html(), 15, 15, {
    'width': 170,
        'elementHandlers': specialElementHandlers
    });
    doc.save('sample-file.pdf');
});
</script>

but it doesn't support CSS .. how can I export it with its style ?

回答1:

What data do you want to export?

If you want to export an HTML <table>, you can take a look at this export sample provided by the Shield UI Grid widget.