ExportTable.js
解决了避免身份证号导出到excel中显示成科学计数法 1 (function ($) { 2 $.fn.extend({ 3 tableExport: function (options) { 4 var defaults = { 5 csvSeparator: ',', 6 csvEnclosure: '"', 7 consoleLog: false, 8 displayTableName: false, 9 escape: false, 10 excelstyles: ['border-bottom', 'border-top', 'border-left', 'border-right'], 11 fileName: 'tableExport', 12 htmlContent: false, 13 ignoreColumn: [], 14 jspdf: { 15 orientation: 'p', 16 unit: 'pt', 17 format: 'a4', 18 margins: { left: 20, right: 10, top: 10, bottom: 10 }, 19 autotable: { 20 padding: 2, 21 lineHeight: 12, 22 fontSize: 8, 23 tableExport: { 24