我有下表
<table>
<TableHeader className="execution-head"/>
<tbody>
<tr className={this.props.className} onClick={this.handleClick}>
<th>{this.props.execution_id}</th>
<th>{this.props.launch_time}</th>
// more th's here
</tr>
<tr className={this.props.className} onClick={this.handleClick}>
<th>{this.props.execution_id}</th>
<th>{this.props.launch_time}</th>
// more th's here
</tr>
<tr>
<th>+</th>
</tr>
</tbody>
</table>
输出:
<table data-reactid=".1">
<thead data-reactid=".1.0">
<tr class="execution-head" data-reactid=".1.0.0">
<th data-reactid=".1.0.0.0">ID</th>
<th data-reactid=".1.0.0.1">Launch Time</th>
<th data-reactid=".1.0.0.5">Execution Time</th>
</tr>
</thead>
<tbody data-reactid=".1.1">
<tr class="execution-row" data-reactid=".1.1.0:$4x324">
<th data-reactid=".1.1.0:$4x324.0">4x324</th>
<th data-reactid=".1.1.0:$4x324.1">11.11.15 13:30</th>
<th data-reactid=".1.1.0:$4x324.5">2</th>
</tr>
<tr class="execution-row" data-reactid=".1.1.0:$4823748">
<th data-reactid=".1.1.0:$4823748.0">4823748</th>
<th data-reactid=".1.1.0:$4823748.1">13.11.15 13:30:25</th>
<th data-reactid=".1.1.0:$4823748.5">34</th>
<tr class="table-plus" data-reactid=".1.1.1">
<th data-reactid=".1.1.1.0">+</th>
</tr>
</tbody>
</table>
我想让最后一个tr元素占据整个表格的宽度,但是从我尝试过的所有内容来看,它总是出错。
如果您想知道
,这是写的反应答案 0 :(得分:0)
计算变量中th
的数量,让我们说col_cnt
然后在最后tr
你可以写下这个:
<tr>
<th colspan="{col_cnt}">+</th>
</tr>