作者valda (valda)
看板Ajax
标题[问题] jquery table2CSV html table to csv
时间Tue Sep 4 16:44:47 2012
在google上有查询到table2CSV.js这个plugin,
但怎麽尝试都失败,无法让htmltable export
成CSV档,
<table id="tCTM" border="1px" cellpadding="4" cellspacing="0"
class="content-black">
<thead>
<tr style="color: White; background-color: #005584;">
<th>
POWER_THEORETICAL
</th>
<th>
POWER_ACTUAL
</th>
<th>
CTM
</th>
<th>
EFFICIENCY
</th>
<th>
CELL_VENDOR
</th>
<th>
OEM_VENDOR
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script type="text/javascript">
$(document).ready(function () {
var csv = $('#tCTM').table2CSV({ delivery: 'value' });
window.location.href = 'data:text/csv;charset=UTF-8,' +
encodeURIComponent(csv);
});
});
请问要如何修改,才可以export 成csv
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 211.20.105.56
2F:→ valda:上面无法使用 09/04 17:50