将HTML表导出到Excel时,无法将数据加载到Excel文件中

时间:2015-04-10 05:27:27

标签: javascript jquery html export-to-excel

我想将HTML表格导出为ex​​cel文件。问题是表中的数据没有导出。表头已成功导出但数据未成功。我也遇到编码问题。某些特殊字符无法正确显示。有人知道问题出在哪里吗?

这是我的代码:

HTML TABLE:

<table id"table2excel">
    <tbody>
    <tr>
        <th>First Name</th><th>Last name</th><th>Score</th>
    </tr>
    <tr>
        <td>John</td><td>Doe</td><td>23124</td>
    </tr>
    <tr>
        <td>Jane</td><td>Doe</td><td>35555</td>
    </tr>
    </tbody>
</table>

的JavaScript

 <script type="text/javascript">
        var tableToExcel = (function() {
          var uri = 'data:application/vnd.ms-excel;base64,'
            , template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>'
            , base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) }
            , format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) }
          return function(table, name) {
            if (!table.nodeType) table = document.getElementById(table)
            var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
            window.location.href = uri + base64(format(template, ctx))
          }
        })()
        </script>

1 个答案:

答案 0 :(得分:3)

您的html和脚本中有错误。

<table id"table2excel">

应该是

<table id="table2excel">

我创造了一个小提琴:

http://jsfiddle.net/Sourabh_/5ups6z84/2/