嘗試自動將此內容轉換爲pdf文件。根據我的其他代碼的設置,我必須有按鈕來點擊INSIDE div我想要導出到pdf。這是一個問題嗎?這是迄今爲止我所擁有的。當我點擊按鈕時,它什麼都不做。使用jsPDF將HTML內容轉換爲PDF文件
JS:
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.4/jspdf.debug.js"></script>
<script>
jQuery('#generatereport').click(function() {
doc.fromHTML(jQuery('#lppresults').html(), 15, 15, {
'width': 170
});
doc.save('sample-file.pdf');
});
</script>
HTML:
<div class="survey-results" style="display: none;" id="lppresults">
<button id="generatereport">Download Report</button>
TEST CONTENT
</div>
我猜你有JS到.html文件? – VictorArcas
@VictorArcas是的,這是正確的 – mickdeez