避免对整个 Tbody Jquery Tablesorter 进行排序

Avoid Sort entire Tbody Jquery Tablesorter

我正在使用 Mottie Jquery tablesorter Fork。

我有这个Html结构:

  Tbody-->tr/--->th/
  tr--->Tbody
  tr
  tr
  tr


  <tr role='row'class='titulo2' id='verde".$id."'>
  <th colspan='8'><h2><i class='fas fa-balance-scale'>
  </i> Haz Seleccionado Este Juzgado y vas de primeras en el <i class='far fa-smile- 
  wink'></i></h2></th></tr><tr class='highlightgreen'><td><h5><span id ='mifav' 
  class='badge badge-Light'>sometext</span></h5></td></tr></tbody>

我试图避免对整个 tbody 进行排序,但是当我进行某种排序时,de tbody 中的第二个 tr 会像这样改变位置:

我尝试过的事情:

设置无排序器class名称。

设置特定的 class 选择器,例如 `staticRow_class

我在 Mottie 文档中找到了答案

使用多个 Tbodies 排序

https://mottie.github.io/tablesorter/docs/example-multiple-tbodies.html

JS

$(function() {

  $("table").tablesorter({
    theme : 'blue',
    cssInfoBlock : "tablesorter-no-sort",
    widgets: [ 'zebra', 'stickyHeaders' ]
  });

});

HTML

 <tbody class="tablesorter-no-sort">
    <tr><th colspan="4">This row is within the first tbody set as an info block - it is not sorted!</th></tr>
  </tbody>