我正在嘗試使用jsPDF將.html文件轉換爲PDF並在新窗口中打開它。jsPDF從.html創建PDF,並在新窗口中打開
我gnerating德PDF這樣的:
function PDFFromHTML() {
var doc = new jsPDF();
// We'll make our own renderer to skip this editor
var specialElementHandlers = {
'#editor': function(element, renderer){
return true;
}
};
// All units are in the set measurement for the document
// This can be changed to "pt" (points), "mm" (Default), "cm", "in"
doc.fromHTML('ticket.html', 15, 15, {
'width': 170,
'elementHandlers': specialElementHandlers
});
}
我需要像window.open打開一個新的窗口,這個PDF文件,但我不能找到這樣做的方式。
問候,
我意識到doc.fromHTML('ticket.html'既不工作也沒有...這個jsPDF是很難使用..我只需要將我的.html以PDF格式,並在新窗口中打開它 – Egidi 2014-10-06 17:15:22