将类添加到动态Bootstrap表行

时间:2017-08-04 06:35:07

标签: javascript jquery html twitter-bootstrap bootstrap-4

所以我想在除了标题之外的表格行中添加一个类,但我无法弄清楚如何去做。有人知道我该怎么做吗?

这是我的表:

<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 个答案:

答案 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");