gpt4 book ai didi

javascript - 将 HTML 表格导出到 Excel 时无法将数据加载到 excel 文件中

转载 作者:行者123 更新时间:2023-11-30 12:25:27 24 4
gpt4 key购买 nike

我想将 HTML 表格导出到 excel 文件。问题是表内的数据没有导出。表头已成功导出,但数据未成功导出。此外,我的编码也有问题。某些特殊字符显示不正确。有人知道问题出在哪里吗?

这是我的代码:

HTML 表格:

<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 :

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

关于javascript - 将 HTML 表格导出到 Excel 时无法将数据加载到 excel 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29554003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com