次のコードを使用して、htmlテーブルからExcelファイルを生成します。小規模なデータセットに対してはうまくいきます。大きなhtmlテーブルデータセットには、ダウンロードエラーが表示されます。javascriptを使用して大規模なhtmlテーブルをエクスポートする
//creating a temporary HTML link element (they support setting file names)
var a = document.createElement('a');
//getting data from our div that contains the HTML table
var data_type = 'data:application/vnd.ms-excel';
var table_div = document.getElementById('dataTable');
var table_html = table_div.outerHTML.replace(/ /g, '%20');
a.href = data_type + ', ' + table_html;
//setting the file name
a.download = 'Sample.xls';
//triggering the function
a.click();
//just in case, prevent default behaviour
e.preventDefault();