javascript 将类添加到动态引导表行

fdx2calv  于 2022-11-20  发布在  Java
关注(0)|答案(2)|浏览(148)

所以我想在我的表格行中添加一个类,除了表头,但是我不知道怎么做。有人知道我怎么做吗?
这是我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
});
6fe3ivhb

6fe3ivhb1#

查看引导表文档并使用行样式属性,我不熟悉该插件,但我猜它应该是这样的

$('#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/

ryevplcw

ryevplcw2#

**第一个:**在html table中添加tbody标记
**2nd:**简单为您添加类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");

相关问题