使用JavaScript将html表数据导出到Excel/jQuery在chrome浏览器中无法正常工作 [英] Export html table data to Excel using JavaScript / JQuery is not working properly in chrome browser

查看:104
本文介绍了使用JavaScript将html表数据导出到Excel/jQuery在chrome浏览器中无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在力度模板中有一个HTML表.我想使用Java脚本或jquery将html表格数据导出到excel,与所有浏览器兼容. 我正在使用以下脚本

I have a HTML table in velocity template. I want to export the html table data to excel using either java script or jquery, comatibale with all browser. I am using below script

<script type="text/javascript">
function ExportToExcel(mytblId){
       var htmltable= document.getElementById('my-table-id');
       var html = htmltable.outerHTML;
       window.open('data:application/vnd.ms-excel,' + encodeURIComponent(html));
    }
</script>

该脚本在 Mozilla Firefox 中可以正常工作,它会弹出一个excel对话框,并询问打开或保存选项.但是,当我在 Chrome浏览器中测试了相同的脚本时,该脚本无法正常工作,因此,当点击按钮时,Excel不会弹出.数据下载到文件名为"file type:file"的文件中,没有扩展名,例如 .xls chrome控制台中没有错误.

This script works fine in Mozilla Firefox,it pops-up with a dialog box of excel and ask for open or save options. But when I tested same script in Chrome browser it is not working as expected,when clicked on button there is no pop-up for excel. Data gets downloaded in a file with "file type : file" , no extension like .xls There are no errors in chrome console.

Jsfiddle示例:

Jsfiddle example :

http://jsfiddle.net/insin/cmewv/

这在mozilla中工作正常,但在chrome中工作不正常.

This works fine in mozilla but not in chrome.

Chrome浏览器测试用例:

Chrome browser Test Case :

第一张图片:我点击导出到excel"按钮

First Image:I click on Export to excel button

和结果:

推荐答案

Excel导出脚本可在IE7 +,Firefox和Chrome上运行.

Excel export script works on IE7+, Firefox and Chrome.

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);
}

只需创建一个空白iframe:

Just create a blank iframe:

<iframe id="txtArea1" style="display:none"></iframe>

在以下位置调用此函数:

Call this function on:

<button id="btnExport" onclick="fnExcelReport();"> EXPORT </button>

这篇关于使用JavaScript将html表数据导出到Excel/jQuery在chrome浏览器中无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆