IT 자료
[스크랩]JQuery를 이용한 Table 데이터를 Excel로 Export
성곤
2015. 2. 9. 20:09
반응형
해당 원문의 출처를 밝힙니다.
출처 : http://her0116.comics.pe.kr/64
JQuery를 이용한 Table 데이터를 Excel로 Export
// 파일명을 지정 하지 않고 할때
$("#btnExcel").live("click", function () {
window.open('data:application/vnd.ms-excel,' + encodeURIComponent($("#tableName").html()))
e.preventDefault();
});
// 파일명 지정하고 할때
$("#btnExcel").live("click", function () {
var a = document.createElement('a');
var data_type = 'data:application/vnd.ms-excel';
var table_html = encodeURIComponent($("#tableName").html());
a.href = data_type + ', ' + table_html;
a.download = '파일명.xls';
a.click();
e.preventDefault();
});
반응형