javascript - 下载 HTML 表 colspan 和 rowspan 没有拾取

标签 javascript jquery html

我有以下 HTML 表格:

<a href="#" id ="download" role='button' class="button">Download</a>
<div id="dvData" class="table-responsive">
    <table class="table table-bordered" id="example">
        <thead>
        <tr>
            <th rowspan="3">Example</th>
            <th colspan="7">Larger Header</th>
        </tr>
        <tr class="table_headers">
            <th colspan="3">Sub Header 1</th>
            <th colspan="3">Sub Header 2</th>
            <th rowspan="2" class="align-middle">Sub Header 3</th>
        </tr>
        <tr class="table_headers">
            <th>Sub sub header</th>
            <th>Sub sub header</th>
            <th>Sub sub header</th>
            <th>Sub sub header</th>
            <th>Sub sub header</th>
            <th>Sub sub header</th>
        </tr>
        </thead>
        <tbody>
        <tr>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
            <td> Info</td>
        </tr>
        </tbody>
    </table>
</div>

我有以下 JavaScript 来下载表格:

function exportTableToCSV($table, filename) {//used to export tables
        var $headers = $table.find('tr:has(th)')
            ,$rows = $table.find('tr:has(td)')
            ,tmpColDelim = String.fromCharCode(11) // vertical tab character
            ,tmpRowDelim = String.fromCharCode(0) // null character
            ,colDelim = '","'
            ,rowDelim = '"\r\n"';

            var csv = '"';
            csv += formatRows($headers.map(grabRow));
            csv += rowDelim;
            csv += formatRows($rows.map(grabRow)) + '"';

            var csvData = 'data:application/csv;charset=utf-8,' + encodeURIComponent(csv);

        if (window.navigator.msSaveOrOpenBlob) {
            var blob = new Blob([decodeURIComponent(encodeURI(csv))], {
                type: "text/csv;charset=utf-8;"
            });
            navigator.msSaveBlob(blob, filename);
        } else {
            $(this)
                .attr({
                    'download': filename
                    ,'href': csvData
            });
        }
        function formatRows(rows){
            return rows.get().join(tmpRowDelim)
                .split(tmpRowDelim).join(rowDelim)
                .split(tmpColDelim).join(colDelim);
        }
        function grabRow(i,row){

            var $row = $(row);
            var $cols = $row.find('td'); 
            if(!$cols.length) $cols = $row.find('th');  

            return $cols.map(grabCol)
                        .get().join(tmpColDelim);
        }
        function grabCol(j,col){
            var $col = $(col),
                $text = $col.text();

            return $text.replace('"', '""'); // escape double quotes

        }
    }
$("#download").click(function (event) {
        outputFile = "example.csv"
        exportTableToCSV.apply(this, [$('#dvData > table'), outputFile]);
    });

当我下载文件时,标题变得困惑。不保留 colspan 和 rowspan 属性。我该如何解决这个问题?

编辑:这是 fiddle https://jsfiddle.net/ALUW/2s1z9pa9/

最佳答案

也许它不完全是您想要的,但可以将其导出到 Excel,完全按照您想要的方式保留标题:

检查这个https://jsfiddle.net/f2qh0t2b/1/

function generateExcel(el) {
    var clon = el.clone();
    var html = clon.wrap('<div>').parent().html();

    //add more symbols if needed...
    while (html.indexOf('á') != -1) html = html.replace(/á/g, '&aacute;');
    while (html.indexOf('é') != -1) html = html.replace(/é/g, '&eacute;');
    while (html.indexOf('í') != -1) html = html.replace(/í/g, '&iacute;');
    while (html.indexOf('ó') != -1) html = html.replace(/ó/g, '&oacute;');
    while (html.indexOf('ú') != -1) html = html.replace(/ú/g, '&uacute;');
    while (html.indexOf('º') != -1) html = html.replace(/º/g, '&ordm;');
    html = html.replace(/<td>/g, "<td>&nbsp;");

    window.open('data:application/vnd.ms-excel,' + encodeURIComponent(html));
}
$("#download").click(function (event) {
    generateExcel($("#example"));
});

关于javascript - 下载 HTML 表 colspan 和 rowspan 没有拾取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42955982/

相关文章:

javascript - Highcharts setState() 上的 3D 渲染问题

javascript - 如何在转发器中使用复选框 AngularJs 计算值

jquery - jSignature 在 ASP.NET Web 窗体中工作,但在 MVC4 中不起作用 - 为什么?

jquery - JS 不接受 <> 大于或小于符号

javascript - 单引号的替换代码不起作用

html - 等于按钮输入的高度?

html - CSS/HTML 固定导航栏重叠内容

javascript - 根据 TD 类别隐藏 TR

javascript - 使用 Bootstrap 定价 slider 的每月 Paypal 付款

javascript - 页面上有 2 个带有 JS 验证的表单 - 其中一个抛出电子邮件验证错误