html表导出为xlsx但excel 2013无法打开它

时间:2016-05-27 12:28:48

标签: javascript html excel html-table xlsx

这是我的函数,将我的html表转换为excel文件。问题是,我需要将该excel文件保存为.xlsx,但我无法做到。有人帮忙吗?

function exceller() {
  var uri = 'data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;content-disposition:attachment;base64,'
    , template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel"><head><!--[if gte mso 9]><?xml version="1.0" encoding="UTF-8" standalone="yes"?><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]; }) }

    $('#toExcel').html($('#pztable').html());
    var toExcel = $('#toExcel').html();
    var ctx = {
        worksheet: name || '',
        table: toExcel
    };
    var link = document.createElement("a");
    link.download = "export.xlsx";
    link.href = uri + base64(format(template, ctx))
    link.click();
    link.remove();
}

这是jsFiddle:https://jsfiddle.net/jxz60kqj/

3 个答案:

答案 0 :(得分:0)

您是否尝试过使用第三方jQuery插件?我一直在使用jquery.table2excel.js,但效果很好。

您需要包含JQuery插件和Table2Excel插件,可以找到here

代码:

$("button").click(function(){ 
   $("#table2excel").table2excel({ 
      // exclude CSS class 
      exclude: ".noExl", 
      name: "Worksheet Name", 
      filename: "SomeFile" //do not include extension 
   }); 
 });

在这里演示:

http://www.jqueryscript.net/demo/Export-Html-Table-To-Excel-Spreadsheet-using-jQuery-table2excel/

答案 1 :(得分:0)

小提琴:https://jsfiddle.net/tbeckenhauer/mueqr96t/9/

如果你设置了href和下载属性,你可以下载它

HTML

<a id="link" href="" download='blah.txt'>Download File!</a>

的JavaScript

var excelData = 'data:text/plain;charset=utf-8,' + encodeURIComponent('your data goes here');

$('#link').click(function(event) {
    $(event.target).attr('href', excelData);
});

答案 2 :(得分:0)

我解决了。我正在使用&#39; xls格式化头元素&#39; 创建一个 html表格,可以通过 Excel 真正读取,但 xlsx 只是这种数据的不同类型的格式。它实际上包含了许多 xml 。因此,没有什么可以将 html表导出为xlsx。我使用了&#39; ALASQL &#39;要做到这一点。它工作得很棒。我建议让您使用&#39; ALASQL &#39;解决这个问题。