0

我正在尝试为 react-bootstrap-table 模块的 Bootstraptable 标签添加一个 id。我看到了道具。有一个 tablebodyclass 道具,我们可以在其中设置类名。但我希望这张桌子是独一无二的。我该如何为表引入 ID?

4

2 回答 2

0

如果有人用“react-bootstrap-table-next”偶然发现这个问题:“^4.0.3”

<BootstrapTable id="someID" ... />

这作品魅力

检查结果:

<table id="someID" class="table table-bordered table-condensed"><thead> ... </thead><table>
于 2021-04-20T09:45:53.753 回答
0

添加到表格顶部

<table id="test">
    <tr>
        <td></td>
    </tr>
</table>
于 2017-09-22T04:03:35.263 回答