我没有找到如何使用类似的库。
通过PHP实现,更容易。
我使用jQuery创建了export_xls.php文件,HTML传递了表并下载了它。
<?php
$table = $_POST['HTMLTABLE'];
$xls_file="Export table.xls";
header("Content-type: application/vnd.ms-excel; charset=utf-8'");
header("Content-Disposition: attachment; filename=$xls_file");
echo $table;
?>
结果: