1
我想將一個html表格導出到Excel。將html表格導出爲Excel數字變成日期
表:
<div id="table">
<table>
<thead>
<tr>
<th>Column</th>
<th>Column</th>
</tr>
</thead>
<tbody id="tabbodyExp">
<tr>
<th>2.5</th>
<th>2.6</th>
</tr>
</tbody>
</table>
</div>
腳本:
$("#btnExport").click(function (e) {
window.open('data:application/vnd.ms-excel,' + $('#table').html());
e.preventDefault();
});
但Excel是打開要寫入這樣的 「2.5」 到日期所有數字。有沒有辦法阻止,或者我必須寫下所有數字「2,5」。