출처 :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();
});
'JAVASCRIPT 자바스크립트' 카테고리의 다른 글
차트 OrgChart 웹차트 jquery차트 제이쿼리 차트 조직도 (0) | 2017.02.12 |
---|---|
jquery excel 저장 (0) | 2014.12.24 |
table 엑셀 데이타로 (0) | 2014.12.24 |
jqgride formatter (0) | 2014.12.22 |
jquery table 이나 사이즈 변경시.. (0) | 2014.11.28 |