Nuestro grupo de especialistas luego de ciertos días de investigación y de recopilar de datos, hallamos la solución, nuestro deseo es que resulte de utilidad para tu plan.
Ejemplo 1: tabla de guardar javascript como excel
<button type="button" id="export" onclick="exportTableToExcel('tblData')">ExportList</button><script>functionexportTableToExcel(tableID, filename ='')var downloadLink;var dataType ='application/vnd.ms-excel';var tableSelect =document.getElementById(tableID);var tableHTML = tableSelect.outerHTML.replace(//g,'%20');// Specify file name
filename = filename ? filename +'.xls':'excel_data.xls';// Create download link element
downloadLink =document.createElement("a");document.body.appendChild(downloadLink);if(navigator.msSaveOrOpenBlob)var blob =newBlob(['ufeff', tableHTML],
type: dataType
);navigator.msSaveOrOpenBlob(blob, filename);else// Create a link to the file
downloadLink.href='data:'+ dataType +', '+ tableHTML;// Setting the file name
downloadLink.download= filename;//triggering the function
downloadLink.click();</script>
Ejemplo 2: tabla html para sobresalir javascript
<script type="text/javascript">var tableToExcel =(function()var uri ='data:application/vnd.ms-excel;base64,', template ='table
',base64=function(s)returnwindow.btoa(unescape(encodeURIComponent(s))),format=function(s, c)return s.replace(/(w+)/g,function(m, p)return c[p];)returnfunction(table, name)if(!table.nodeType) table =document.getElementById(table)var ctx =window.location.href= uri +base64(format(template, ctx)))()</script>
Acuérdate de que puedes optar por la opción de agregar una reseña si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)