0
我有這樣的代碼,我使用的HTML導出爲PDF格式,它的工作,但沒有CSS
jsPDF出口沒有CSS樣式
<body>
<div class="container">
<div style="background-color: yellow" id="pagina">Page to Print</div>
<div id="editor">
<a href="#" class="btn btn-primary download-pdf">Download PDF</a>
</div>
</div>
</body>
<script type="text/javascript">
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function(element, renderer){
return true;
}
};
doc.fromHTML($('body').get(0), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
$('.download-pdf').click(function(){
doc.save('demo.pdf');
});
這是可能的使用CSS出口?