jquery tablersorter 常用配置

来源:互联网 发布:使命召唤8mac版下载 编辑:程序博客网 时间:2024/06/06 10:06

1,汉字排序

 

$(function(){  $("table").tablesorter({   //配置为localeCompare比较方式    textSorter: function(a, b, direction, columnIndex, table){      return a.localeCompare(b);    }  });});

 

2,固定序号

 

 

        $.tablesorter.addWidget({          id: 'fixFirstNumber',          format: function(table, config, widgetOptions, initFlag) {            for(var i=1;i<table.rows.length;i++){                //console.log(table.rows[i].cells[0].innerHTML);                table.rows[i].cells[0].innerHTML = i;            }          }        });      $("table").tablesorter({          widgets: ['fixFirstNumber'],       })

 
 

 

0 0