如何禁用特定表列中的类?

时间:2017-07-09 05:42:29

标签: html css html5 twitter-bootstrap css3

我不确定这是否可行。 无论如何,我想从一列禁用.sorting类,该类是bootstrap。请查看URL图片以获取更多信息。

http://prntscr.com/ftebsr

谢谢。

2 个答案:

答案 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 }
  ]
});