【发布时间】:2021-12-06 20:36:17
【问题描述】:
我正在尝试使用react-bootsrap:http://www.bootply.com/T0v2NlXryW 实现类似的反应
我现在的反应代码是这样的,但不起作用:
<Table>
<thead>
<tr>
<th>Job Name</th>
<th>Description</th>
<th>Provider Name</th>
<th>Region</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr data-toggle="collapse" data-target="#demo1" className="accordion-toggle">
<td>OBS Name</td>
<td>OBS Description</td>
<td>hpcloud</td>
<td>nova</td>
<td> created</td>
</tr>
<tr>
<td colspan="12" className="hiddenRow">
<div className="accordian-body collapse" id="demo1">
<h1>Hi from the hiddenRow</h1>
</div>
</td>
</tr>
</tbody></Table>
表格显示正确,但点击时行未展开。
【问题讨论】:
标签: twitter-bootstrap reactjs html-table react-bootstrap