請檢查鏈接 https://jsfiddle.net/dhaileytaha/1wmk9gsq/14/下載PDF格式不正確
<script>
/*Download option*/
var doc = new jsPDF();
var specialElementHandlers = {
'#editor': function (element, renderer) {
return true;
}
};
doc.fromHTML($('#example').html(), 55, 55, {
'width': 170,
'elementHandlers': specialElementHandlers
});
document.getElementById("cmd").onclick = function() {
var pass1= "cool" ;
password=prompt('Please enter your password to Print this page!',' ');
if (password==pass1)
{
doc.save('target-file.pdf');
} else {
window.alert('Sorry! You are not Authorsised');
}
}
</script>
它是一個數據表。我能夠以適當的格式打印它,但無法以與數據表格相同的格式下載。 請幫忙 我想要與pdf格式的DATATABLE相同的格式。
看看這篇文章:附上一個很好的工作示例。 http://stackoverflow.com/questions/16858954/how-to-properly-use-jspdf-library – lastboy