关于JQuery语句删除表格列

<table class="table table-bordered table-hover ">
<thead>
<tr>
<th>序号</th>
<th>审核</th>
<th></th>
<th>分类</th>
<th>标题</th>
<th>内容</th>
<th>操作人</th>
<th>操作时间</th>
<th>审核人</th>
<th>审核时间</th>
<th>审核结果</th>
<th>审核意见</th>
<th class="hidden"></th>
<th class="hidden"></th>
<th class="hidden"></th>
<th class="hidden"></th>
<th>操作</th>
</tr>
</thead>
<tbody id="Msg">
<tr>
<td>
<img src='/imgs/loading.gif'/>数据载入中……</td>
</tr>
</tbody>
</table>
像我这个表格我想吧审核的那的列隐藏掉怎么实现 期待大佬的关照

第1个回答  2018-08-24
$(".table thead tr th:nth-child(2)").hide()

$(".table thead tr th::eq(1)").hide()

这两种都可以  这样就隐藏了

本回答被提问者和网友采纳