1. 程式人生 > >js 匯出 excel 檔案

js 匯出 excel 檔案

今天來整理一下js匯出excel檔案很簡單引入一點js 就可以了。原理不講了,直接上程式碼

一、引入 js

二、html 書寫格式:

HTML:

<table id="targetTable">
   <tr>
     <td>111111111111</td>
     <td>222222222222</td>
   <tr>
</table>
<button type="button" onclick="javascript:method1('targetTable')"
>
匯出EXCEL</button> //targetTable 為 table id,可以修改

點選 button 就可以將表格匯出為excel了。