我将在B, MB, GB, TB
. 我正在使用 jQuery 表格排序器。现在我正在使用表格排序器:
$(document).ready(function() {
// call the tablesorter plugin
if ($("#product-table tbody td").length > 0){
$("table").tablesorter({
// sort on the first column and third column, order asc
sortList: [[0,0],[2,0]]
});
}
});
如何使列按文件大小排序?