jquery表排序器排序问题

发布于 2024-11-01 07:18:56 字数 434 浏览 0 评论 0原文

大家晚上好,

我正在尝试实现 jquery 表排序器,一切看起来都很好并且按列排序,但是由于某种原因,日期(默认)列不按我正在使用的日期格式排序。这是代码:

<script type="text/javascript">
$(document).ready(function() 
    { 
    $("#myTable").tablesorter( {sortList: [[0,0]]} ); 
    } 
); 
</script>

日期列是第一列,日期按以下格式编写: 2011 年 6 月 2 日 11 十月 15 日等

另外,根据上面的代码,如何禁用对特定列(第 6 列,即最后一列)进行排序的选项?我这辈子也想不通!

如果失败了,我非常乐意使用日期格式 dd/mm/yyyy 如果更容易的话?

Good evening all,

I'm trying to implement jquery table sorter, all seems fine and sorts by columns, however for some reason the date (default) column doesn't sort by the date format I'm using. This is the code:

<script type="text/javascript">
$(document).ready(function() 
    { 
    $("#myTable").tablesorter( {sortList: [[0,0]]} ); 
    } 
); 
</script>

The date column is the first column and the dates are written in this format:
2 June 11
15 October 11 etc

In addition, from the above code, how would you disable the option to sort a particular column (column 6, which is the final column)? Can't for the life of me figure it out!

Failing this, I'm more than happy to use the date format as dd/mm/yyyy if it's easier?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笨笨の傻瓜 2024-11-08 07:18:56

尝试此方法禁用第 6 个标头的排序:

$("#myTable").tablesorter({ 
    sortList: [[0,0]],
    // pass the headers argument
    headers: { 
        // assign the sixth column (we start counting zero) 
        5: { 
            // this is header 6 since the headers start at 0
            // disable it by setting the property sorter to false 
            sorter: false 
        }, 
    } 
}); 

的文档

请参阅此处了解有关此选项 对这些类型的日期进行排序,您可能需要自己进行排序实现,因为 tablesorter 不知道 date 是什么(以该格式),

因此您可以添加日期解析器,如文档中的说明

try this to disable sorting on 6th header:

$("#myTable").tablesorter({ 
    sortList: [[0,0]],
    // pass the headers argument
    headers: { 
        // assign the sixth column (we start counting zero) 
        5: { 
            // this is header 6 since the headers start at 0
            // disable it by setting the property sorter to false 
            sorter: false 
        }, 
    } 
}); 

see here for doc on this option

to sort those types of dates you might have to make your own sorting implementation because tablesorter doesn't know what a date is (in that format)

so you can add a date parser, as explained in the doc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文