我想下載根據jsPDF的文檔所做的html標記的簡歷pdf文件。點擊後,簡歷pdf實際上是下載的,但pdf是空白的。jsPDF下載點擊按鈕的標記pdf文件
The JSfiddle with full code is here;我的JS函數看起來像這樣:
$('.btn-download').click(function() {
var doc = new jsPDF();
//var source = $('#target').html();
var specialElementHandlers = {
'.btn-download': function (element, renderer) {
return true;
}
};
doc.fromHTML($('#content').get(0), 0.5, 0.5, {
'width': 150,
'elementHandlers': specialElementHandlers
});
doc.save("resume-cv.pdf");
});
任何一個可以幫助我將是非常可觀的。我可以下載pdf文件,但標記文本不在那裏。 –