var makeToExcel = (function () {
    var style = "<style> td,th {width:100px;} </style>";
    var uri = 'data:application/vnd.ms-excel;base64,'
        , template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]-->' + style + '<meta http-equiv="Content-Type" content="application/vnd.ms-excel; charset=utf-8"/></head><body><table border="1">{table}</table></body></html>'
        , base64 = function (s) {
        return window.btoa(unescape(encodeURIComponent(s)))
    }
        , format = function (s, c) {
        return s.replace(/{(\w+)}/g, function (m, p) { return c[p]; })
    }
    return function (table, fileName , sheetName) {
        if (!table.nodeType) table = document.getElementById(table);
        var ctx = { worksheet: sheetName || 'Worksheet', table: table.innerHTML };
        let a = document.createElement('a');
        a.href = uri + base64(format(template, ctx));
        a.download = fileName+'.xls';
        a.click();
    }
})()

makeToExcel('table의 id값', '파일이름','시트이름');

 

 

+ Recent posts