Este tutorial fue analizado por especialistas así se asegura la veracidad de nuestra esta crónica.
Ejemplo: javascript guardar tabla 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>
Comentarios y valoraciones del post
Si sostienes alguna vacilación y capacidad de arreglar nuestro post te recordamos ejecutar un paráfrasis y con placer lo interpretaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)