将 HTML table 导出到 Excel 时无法将数据加载到 excel 文件
Failing to load data into excel file when exporting HTML table to Excel
我想导出 HTML table 到 excel 文件。问题是 table 中的数据没有导出。 Table headers 已成功导出,但数据为 not.Also 我遇到编码问题。某些特殊字符显示不正确。有人知道问题出在哪里吗?
这是我的代码:
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>
您的 html 和脚本有错误。
<table id"table2excel">
应该是
<table id="table2excel">
我创建了一个 fiddle :
我想导出 HTML table 到 excel 文件。问题是 table 中的数据没有导出。 Table headers 已成功导出,但数据为 not.Also 我遇到编码问题。某些特殊字符显示不正确。有人知道问题出在哪里吗?
这是我的代码:
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>
您的 html 和脚本有错误。
<table id"table2excel">
应该是
<table id="table2excel">
我创建了一个 fiddle :