Jquery表到Excel在Firefox和IE

时间:2015-05-15 12:16:21

标签: jquery excel

我使用下面的代码将我的表导出到Excel。

它在Chrome中运行良好,但它在Firefox和IE中无效。

$("#exportButton").click(function(e) {
        var table_div = document.getElementById('availablePeopleTable');
        var table_html = table_div.outerHTML.replace(/ /g, '%20');
        a.href = data_type + ', ' + table_html;
        a.download = 'Availability_Report_' + postfix + '.xls';
        //triggering the function
        a.click();
        //just in case, prevent default behaviour
        e.preventDefault();
    });

任何人都可以帮我吗?

0 个答案:

没有答案