所以我想在我的表格行中添加一个类,除了表头,但是我不知道怎么做。有人知道我怎么做吗?
这是我table:
<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
});
2条答案
按热度按时间6fe3ivhb1#
查看引导表文档并使用行样式属性,我不熟悉该插件,但我猜它应该是这样的
在此阅读文档http://bootstrap-table.wenzhixin.net.cn/documentation/
ryevplcw2#
**第一个:**在html
table
中添加tbody
标记**2nd:**简单为您添加类
tbody tr
只像这样HTML格式:
在jquery中