출처 :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();
});

블로그 이미지

은호아빠

여행, 맛집, 일상, 프로그래밍, 개발자, 윈도우, 웹, jsp, spring, db, mysql, oracle, c#

,