table-hover怎么对th无效
用<thead></thead>标签吧th包裹
<table class="table table-hover">
<thead>
<tr>
<th>表格标题</th>
</tr>
</thead>
<tbody>
<td>表格单元格</td>
</tbody>
</table>