需要一些帮助。我使用该函数从jqgrid表导出csv格式的数据:
$("#table").jqGrid("exportToCsv", {
mimetype: "text/csv;charset=utf-8",
separator: ";",
separatorReplace: "", // in order to interpret numbers
quote: '"',
escquote: '"',
newLine: "\r\n", // navigator.userAgent.match(/Windows/) ? '\r\n' : '\n';
replaceNewLine: " ",
includeCaption: true,
includeLabels: false,
includeGroupHeader: false,
includeFooter: true,
fileName: "phonebook.csv",
returnAsString: false
})
工作正常。但后来我用Excell打开文件我看到这样的错误编码:
如果我在Notepad ++中打开文件,它看起来不错。
任何人都可以提供帮助或提供一些建议吗?