我正在使用jquery数据表,其中有一个导出到excel的选项,我正在使用jquery数据表工具。我的表单元格包含反转的逗号,这会导致导出问题。如何解决此问题我试图使用 fnCellRender
来操纵数据 "fnCellRender": function ( sValue, iColumn, nTr, iDataIndex ) {
if ( iColumn === 10) {
//here i want to check if string contains the inverted comma ,
//if present then how can i escape them so that they appear in excel too.
return sValue;
}