作者:TXCWB_523 | 2023-09-10 14:45
这是我用来生成我的excel文件.xls的函数
var tableToExcel = (function() {
var uri = 'data:application/vnd.ms-excel ;base64,'
, template = '
'
, 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))
}
})()
tableToExcel('table', 'Table Title')
这就是我得到的错误