设置columns中字段对应的cellStyle方法即可,代码如下所示。
$('xxx').bootstrapTable({
columns: [
{
field:'id',
title: '索引',
formatter: function (value, row, index) {
return index + 1;
}, cellStyle: function (value) {
return {
'classes':'xxx xxxx', //通过class
'css': { //通过style
'width': '48px',
'text-align': 'center'
}
};
}
}
]
});