答案 0 :(得分:1)
我认为您的代码就像这样
<th><b>#</b> <i class="fa fa-fw fa-sort"></i></th>
然后你可以使用css来禁用任何这样的列(例如:-first column)
th:nth-child(1) .fa-sort{
display:none;
}
答案 1 :(得分:0)
根据您的屏幕截图,我假设这是参考Bootstrap DataTables增强的表。在这种情况下,更全面的解决方案可能是在JS配置中使用columnDefs
选项:
https://datatables.net/reference/option/columns.orderable
$('#example').dataTable( {
"columnDefs": [
{ "orderable": false, "targets": 0 }
]
});