JAVASCRIPT 자바스크립트
jquery 엑셀파일 저장할때
은호아빠
2014. 12. 24. 16:20
출처 :http://her0116.comics.pe.kr/64
/ 파일명을 지정 하지 않고 할때
$("#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();
});