这样的事情应该有效:
doc.autoTable({ html: '#table', didParseCell: function(cell, data) { if (data.row.index === 0 || data.row.index === 2) { cell.styles.fontStyle = 'bold'; } } })