jQuery导出到Excel,包括html th行

时间:2013-11-26 11:59:52

标签: jquery html html-table export-to-csv

我有一个小提琴,从另一个论坛修改,用jQuery将html表导出为CSV。这很好用但是我不能让它包含表头行。

小提琴是: http://jsfiddle.net/KPEGU/480/

我用以下语法搞砸了没有任何运气:

var $rows = $table.find('tr:has(td)'),

与它有关:

$cols = $row.find('td');

所以我在寻找包含标题的输出,而不仅仅是普通的表行。

完整的脚本是:

$(document).ready(function () {

    function exportTableToCSV($table, filename) {

        var $rows = $table.find('tr:has(td)'),


            tmpColDelim = String.fromCharCode(11), 
            tmpRowDelim = String.fromCharCode(0), 
            colDelim = '","',
            rowDelim = '"\r\n"',

            csv = '"' + $rows.map(function (i, row) {
                var $row = $(row),
                    $cols = $row.find('td');

                return $cols.map(function (j, col) {
                    var $col = $(col),
                        text = $col.text();

                    return text.replace('"', '""'); 
                }).get().join(tmpColDelim);

            }).get().join(tmpRowDelim)
                .split(tmpRowDelim).join(rowDelim)
                .split(tmpColDelim).join(colDelim) + '"',

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

        $(this)
            .attr({
            'download': filename,
                'href': csvData,
                'target': '_blank'
        });
    }


    $(".export").on('click', function (event) {
        // CSV
        exportTableToCSV.apply(this, [$('#dvData>table'), 'export.csv']);

    });
});

1 个答案:

答案 0 :(得分:1)

一些小改动:

var $rows = $table.find('tr:has(td,th)'),

$cols = $row.find('td,th');