你好,我正面临着这样的问题。当我将数据导出到excel时。我可以导出数据,但问题是,当我打开它excel时,我的Excel中没有显示行或表格行。到目前为止我有这个代码。在谈到这个问题时,我能向所有专家提出任何想法吗?
$(function() {
$("#exportToExcel").click(function() {
var data = '<table>' + $("#ReportTable").html().replace(/<a\/?[^>]+>/gi, '') + '</table>';
$('body').prepend("<form method='post' action='exporttoexcel.php' style='display:none' id='ReportTableData'><input type='text' name='tableData' value='" + data + "' ></form>");
$('#ReportTableData').submit().remove();
return false;
});
});