선 밖에 선 자유인

javascript export to Excel 본문

IT/Programming

javascript export to Excel

Hotman 2014. 10. 7. 15:28


출처: http://stackoverflow.com/questions/14977943/how-to-export-jsp-table-to-excel-xlsx-format


--------------------------------------------------------------------------------

tableToExcel Demo


tableToExcel Demo

Exporting the W3C Example Table

{table}
' , 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, name) { if (!table.nodeType) table = document.getElementById(table) var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML} window.location.href = uri + base64(format(template, ctx)) } })()

--------------------------------------------------------------------------------

Comments