我正在尝试通过JSPDF制作可下载的DIV内容。这是我的小提琴: http://jsfiddle.net/S3XRp/14/
和代码:
$(document).ready(function(){
var doc = new jsPDF();
// We'll make our own renderer to skip this editor
var specialElementHandlers = {
'#editor': function(element, renderer){
return true;
}
};
$('#cmd').click(function () {
doc.fromHTML($('#content').get(0), 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
doc.save('sample-file.pdf');
});
});
HTML:
<div id="content">
<h3>Hello, this is a H3 tag</h3>
<p>a pararaph</p>
</div>
<div id="editor"></div>
<a href="#" id="cmd">generate PDF</a>
但它不适合我。我使用最新的Chrome .. 感谢任何提示。