0

我正在使用此脚本将 html 表导出到 excel 文件,但我在表中有图像标签,所以我想在脚本导出到 excel 时删除该标签。这是我正在使用的脚本

<script type="text/javascript">
       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))
         }
       })()
       </script>

       <input type="button" onclick="tableToExcel('datatable', 'W3C Example Table')" value="Export to Excel">

这是导出的 excel 工作表的快照。 由于所有图像标签,它显示十字符号。 我想删除那些图像。

4

2 回答 2

1

您可以删除<img>这样的标签:

table: table.innerHTML.replace(/<\s*img[^>]*>/gi,'');

演示

于 2012-07-26T15:19:45.103 回答
0
$("#btnExport").click(function(e) {
   window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#export').html()));
});
于 2013-05-10T07:23:59.230 回答