文件格式或文件扩展名无效

File format or File extension not valid

本文关键字:文件 无效 扩展名 格式      更新时间:2023-09-26

我正在使用rainabba/jquery-table2excel将html表导出到excel。单击按钮后,文件会被下载,但excelles报告文件或格式已损坏。请提出建议。

<html>
<head>
     <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
    <script type="text/javascript" src="jquery-table2excel-master/dist/jquery.table2excel.min.js"></script>
    <script type="text/javascript">
$(document).ready(function(e){
    $("#myButton").click(function (e){
        $(".mytable").table2excel({
            name:"new File",
            filename:"work",
            //fileext:".xlsx"
        });
    });
    });

</script>
</head>
<body>
    <button id="myButton">Click To Download</button>
    <table class="mytable" border="1">
        <tr>
            <th>new1</th>
            <th>new2</th>
            <th>new3</th>
            <th>new4</th>
        </tr>
        <tr>
            <td>Data 1</td>
            <td>Data 2</td>
            <td>Data 3</td>
            <td>Data 4</td>
        </tr>
    </table>
</body>
</html>
<button class="btn btn-default" onclick="tableToExcel(''#divId'', ''Excel Report'')">Generate Excel</Button>
<div id="divId">
    <table class="mytable" border="1">
        <tr>
            <th>new1</th>
            <th>new2</th>
            <th>new3</th>
            <th>new4</th>
        </tr>
        <tr>
            <td>Data 1</td>
            <td>Data 2</td>
            <td>Data 3</td>
            <td>Data 4</td>
        </tr>
    </table>
</div>
    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))
                }
            })()

使用此代码。。用于生成excel文件。。