gpt4 book ai didi

javascript - 禁用数据表中的一些单元格 jQuery 的排序

转载 作者:行者123 更新时间:2023-11-28 04:26:44 24 4
gpt4 key购买 nike

只是我试图让它忽略排序,如果单元格有?

这是我的 table :

ID | name  | supply
1 | John | 12
2 | Kayle | ?
3 | Tim | 24

当您按 asc 排序供应时

ID | name  | supply
1 | John | 12
3 | Tim | 24
2 | Kayle | ?

当您按描述对供应进行排序时

ID | name  | supply
3 | Tim | 24
1 | John | 12
2 | Kayle | ?

有办法吗?

最佳答案

您需要使用Absolute position sorting plug-in .

例如:

var nameType = $.fn.dataTable.absoluteOrder({
value: '?', position: 'bottom'
});

var table = $('#example').DataTable({
columnDefs: [
{ targets: 0, type: nameType }
]
});

除了 DataTables CSS/JS 文件之外,您还需要包含 absolute.js 文件。

参见this example用于代码和演示。

关于javascript - 禁用数据表中的一些单元格 jQuery 的排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44985727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com