TableSort最新版如何支持中文汉字排序
发布网友
发布时间:2022-11-01 01:32
我来回答
共1个回答
热心网友
时间:2023-10-17 20:47
有textSorter配置,配置这个就好了,中文需要使用localeCompare,不能a>b这样比
参考:jQuery.tablesorter 2.0中文排序解决办法
$("table").tablesorter({
theme: 'blue', textSorter: function (a, b, asc, table) {
return a.localeCompare(b);
}
});