我使用下面的代码将我的表导出到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();
});
任何人都可以帮我吗?