jquery-table2excel
jquery-table2excel copied to clipboard
消除科学计数
比如身份号,excel怎么消除科学计数法,只展示字符串?
js文件里这段判断一下,字段长度和是否为纯数字
if (rc.rows & rc.cols) { if ($(q).html().length > 11 && !isNaN($(q).html())) { tempRows += "
} else { if ($(q).html().length > 11 && !isNaN($(q).html())) { tempRows += "<td style='mso-number-format:"\@"'"; } else { tempRows += "<td"; } if( rc.rows > 0) { tempRows += " rowspan='" + rc.rows + "' "; } if( rc.cols > 0) { tempRows += " colspan='" + rc.cols + "' "; } tempRows += "/>" + $(q).html() + ""; }