【发布时间】:2015-07-01 04:41:38
【问题描述】:
我尝试将我的表格导出到 Csv 或 Excel 文件。我的表格中标题和正文的内容是波斯语。
“呲牙”
这是我的代码:
function bestWayToExport() {
var table = document.getElementById('tableCount');
var html = table.outerHTML;
window.open('data:application/vnd.ms-excel;UTF-8,' + escape(html));
}
现在,结果不正确。
"%u0631%u0648%u0632"
怎么办?! (请不要对我NEGATIVE -!)
【问题讨论】:
标签: jquery export-to-excel export-to-csv