看板 Ajax 關於我們 聯絡資訊
在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
valda:http://jsfiddle.net/n9XRx/8/ 剛找到的方法,可是IE 09/04 17:50
valda:上面無法使用 09/04 17:50