使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox

Posted Tim Gong 的 Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox相关的知识,希望对你有一定的参考价值。

function fnExcelReport()
{
    var tab_text="<table border=‘2px‘><tr bgcolor=‘#87AFC6‘>";
    var textRange; var j=0;
    tab = document.getElementById(‘headerTable‘); // id of table

    for(j = 0 ; j < tab.rows.length ; j++) 
    {     
        tab_text=tab_text+tab.rows[j].innerhtml+"</tr>";
        //tab_text=tab_text+"</tr>";
    }

    tab_text=tab_text+"</table>";
    tab_text= tab_text.replace(/<A[^>]*>|</A>/g, "");//remove if u want links in your table
    tab_text= tab_text.replace(/<img[^>]*>/gi,""); // remove if u want images in your table
    tab_text= tab_text.replace(/<input[^>]*>|</input>/gi, ""); // reomves input params

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE "); 

    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv:11./))      // If Internet Explorer
    {
        txtArea1.document.open("txt/html","replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus(); 
        sa=txtArea1.document.execCommand("SaveAs",true,"Say Thanks to Sumit.xls");
    }  
    else                 //other browser not tested on IE 11
        sa = window.open(‘data:application/vnd.ms-excel,‘ + encodeURIComponent(tab_text));  

    return (sa);
}

以上是关于使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox的主要内容,如果未能解决你的问题,请参考以下文章

使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox

Javascript/ jQuery:以 CSV 格式导出数据在 IE 中不起作用

jQuery wordexport导出 word

请教如何用JQuery导入导出excel表格

JQuery 导入导出 Excel

使用 React 导出 javascript 函数