所以我想在除了标题之外的表格行中添加一个类,但我无法弄清楚如何去做。有人知道我该怎么做吗?
这是我的表:
<table id="table" class="hidden table table-bordered table-striped table-hover">
<thead>
<tr>
<th data-field="variant">Variant</th>
<th data-field="description">Description</th>
</tr>
</thead>
</table>
这是我目前添加数据并希望将类添加到行
的地方$('#table').bootstrapTable({
data: returnValue
});
答案 0 :(得分:1)
查看bootstrap表文档并使用行样式属性, 我不熟悉那个插件,但我猜它应该是这样的
$('#table').bootstrapTable({
data: returnValue,
rowStyle : function(row, index) {
return {
classes: 'text-nowrap another-class',
css: {"color": "blue", "font-size": "50px"}
};
}
});
阅读此处的文档http://bootstrap-table.wenzhixin.net.cn/documentation/
答案 1 :(得分:0)
第一次在html tbody
table
标记
第二名简单地为您tbody tr
添加课程
$('#table tbody tr').addClass("newclass");
HTML:
<table id="table" class="hidden table table-bordered table-striped table-hover">
<thead>
<tr>
<th data-field="variant">Variant</th>
<th data-field="description">Description</th>
</tr>
</thead>
<tbody> //tbody added here
<tr>
....
</tr>
</tbody>
</table>
在jquery中
$('#table tbody tr').addClass("newclass");