JQuery DataTables 列自定义数据类型排序
使用JQ DataTables 的时候,希望某列自定义类型数据可以进行排序,操作如下:
1:定义排序类型:
//百分率排序
jQuery.fn.dataTableExt.oSort[‘number-fate-asc‘] = function(s1,s2) {
s1 = s1.replace(‘%‘,‘‘);
s2 = s2.replace(‘%‘,‘‘);
return s1-s2;
};
jQuery.fn.dataTableExt.oSort[‘number-fate-desc‘] = function(s1,s2) {
s1 = s1.replace(‘%‘,‘‘);
s2 = s2.replace(‘%‘,‘‘);
return s2-s1;
};
//中文排序
jQuery.fn.dataTableExt.oSort[‘chinese-string-asc‘] = function(s1,s2) {
return s1.localeCompare(s2);
};
jQuery.fn.dataTableExt.oSort[‘chinese-string-desc‘] = function(s1,s2) {
return s2.localeCompare(s1);
};
2:指定排序的列:
$(‘#flexme1‘).dataTable({
"aoColumns": [
null,
{ "sType": "chinese-string" },//中文排序列
null,
{ "sType": "number-fate" },//百分率排序
null,
{ "sType": "number-fate" }//百分率排序
]
});
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。