다음 코드를 사용하여 html 테이블에서 Excel 파일을 생성합니다. 작은 크기의 데이터 세트에서는 잘 작동합니다. 큰 html 테이블 데이터 세트는 다운로드 오류를 표시합니다.큰 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();