經過theadClasses屬性設置表頭樣式。javascript
//bootstrap table初始化數據 itxst.com $('#table').bootstrapTable({ columns: columns, data: getData(), theadClasses: "thead-light",//這裏設置表頭樣式 classes: "table table-bordered table-striped table-sm table-dark", height:400 });
//bootstrap table初始化數據 $('#table').bootstrapTable({ columns: columns, data: getData(), theadClasses: "thead-dark",//這裏設置表頭樣式 classes: "table table-bordered table-striped table-sm table-dark", height:400 });
<style> /*定義類名爲.thead-blue的樣式*/ .table .thead-blue th { color: #fff; background-color: #3195f1; border-color: #0d7adf; } </style> //bootstrap table初始化數據 $('#table').bootstrapTable({ columns: columns, data: getData(), theadClasses: "thead-blue",//設置thead-blue爲表頭樣式 classes: "table table-bordered table-striped table-sm table-dark", height:400 });