将Excel表格导出为ex​​cel在Internet Explorer 10/11中不起作用

时间:2017-02-05 09:58:57

标签: javascript jquery internet-explorer internet-explorer-11

我将完成将HTML表导出到Excel在Chrome和Firefox中正常工作,但它在Internet Explorer 10/11中无效。

        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))
            }
        })()
.myTable { background-color:#eee;border-collapse:collapse; }
.myTable th { background-color:powderblue;color:black; }
.myTable td, .myTable th { padding:5px;border:1px solid #000; }
<table border='1' id='testTable' width='100%' class='myTable'>
<tr>
  <td>Test01</td>
  <td>Test02</td>
  <tr>
</table>
 <a href="#" data-toggle="modal" class="btn" onclick="tableToExcel('testTable', 'test')"><i class="icon-file"></i> Execl</a>

0 个答案:

没有答案