我想使用jquery將HTML中的某些表導出爲PDF文件。 到目前爲止,我可以用Ngiriraj導出爲PDF格式,但它不能編碼日文字符HTML to PDF with Japanese
所以,請幫我找當我使用"全體デザイン", it show "å…¨ä½「デザイン"
方式
謝謝。
HTML
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="tableExport.js"></script>
<script type="text/javascript" src="jquery.base64.js"></script>
<script type="text/javascript" src="html2canvas.js"></script>
<script type="text/javascript" src="sprintf.js"></script>
<script type="text/javascript" src="jspdf.js"></script>
<script type="text/javascript" src="base64.js"></script>
<table id="nation">
<thead>
<tr class='warning'>
<th>Nation</th>
<th>Population</th>
<th>Date</th>
<th>%ge</th>
</tr>
</thead>
<tbody>
<tr>
<td>中國</td>
<td>1,363,480,000</td>
<td>March 24, 2014</td>
<td>19.1</td>
</tr>
<tr>
<td>日本</td>
<td>249,866,000</td>
<td>July 1, 2013</td>
<td>3.49</td>
</tr>
</tbody>
</table>
的PDF
Nation Population Date %ge
ä¸-国 1,363,480,000 March 24, 2014 19.1
日本 249,866,000 July 1, 2013 3.49
如果你把UTF-8編碼的符號:'&#E38182'放在html表中? – Theolodis
請提供從該html生成的最小html和pdf。 –
我加了,謝謝你的幫助。 –