导出html table 数据到Excel

其实只需要复制  粘贴....

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="../../Scripts/ExportJS/FileSaver.min.js"></script>
<script src="../../Scripts/ExportJS/tableExport.js"></script>
<button onclick="$('#table1').tableExport({type: 'excel', excelstyles: ['border-bottom', 'border-top', 'border-left', 'border-right']})"> 导出</button>
<table id="table1" data-numcols="2" data-numrows="2">
    <thead>
        <tr>
    <th>AAA</th>
    <th>bbb</th>
        </tr>
    </thead>
   
    <tbody>
    <tr><td>123</td><td>123</td></tr>
    <tr><td>456</td><td>456</td</tr>
   </tbody>
</table>

资源地址:http://download.csdn.net/download/m0_37776058/10169530

原文地址:https://www.cnblogs.com/j2ee-web-01/p/8086221.html