我使用PHP + jQuery导出html表内容。当我单击导出按钮时,excel文件已成功生成为xls格式。我想将文件生成为xlsx格式。
$FileName="my-file.xls";
header('Content-Type: application/force-download');
header('Content-disposition: attachment; filename='.$FileName.'');
header("Pragma: ");
header("Cache-Control: ");
echo $_REQUEST['tableData'];
exit();
添加jQuery
var clone_val = $(".tblExport").clone();
$("#tData").val($('<span><style> .textFormat { mso-number-format:"\@"; } .numberFormat { mso-number-format:"0\.00" }</style>').append (clone_val).html());
$("#excel-export-form").submit();
表内容使用jQuery存储在具有属性id="tData" name="tableData"
的输入框中。
当我将文件名更改为my-file.xlsx
时,会生成损坏的xlsx文件。还尝试了数据表excel导出,但是它不支持多个标头。