Javascript代码生成XLS文件

// string to be obtained in xls file in different columns
var exportString = 'Source1; 240; A/V Signal drop out; 15';
// creating anchor tag
var a = document.createElement('a');
    a.href = 'data:attachment/xls,' + exportString;
    a.target = '_blank';
    a.download = 'filename.xls';
    document.body.appendChild(a);
    a.click();

最佳答案

您可能使用了不同的定界符,因此您可能没有在开放办公室做任何错误的事情,只需要知道应该使用什么作为定界符即可。

关于javascript - 如何在将html表导出到xls文件时设置定界符,以便在使用openOffice calc打开文件时不会单独要求定界符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31383938/

10-12 15:43