HTML table export to Excel (XLS or CSV)

后端 未结 2 1442
误落风尘
误落风尘 2021-01-20 02:10

I\'m trying to export HTML table content to excel. I saw this solution which worked but not as I expected it (because I can\'t choose which columns to copy

2条回答
  •  -上瘾入骨i
    2021-01-20 02:50

    Excel Export Script works on IE7+ , Firefox and Chrome
    ===========================================================
    
    
    
    function fnExcelReport()
        {
                 var tab_text="";
                 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+"";
                    //tab_text=tab_text+"";
              }
    
              tab_text=tab_text+"
    "; tab_text= tab_text.replace(/]*>|<\/A>/g, "");//remove if u want links in your table tab_text= tab_text.replace(/]*>/gi,""); // remove if u want images in your table tab_text= tab_text.replace(/]*>|<\/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); } Just Create a blank iframe Call this function on

提交回复
热议问题