0

我将在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]] 
        }); 
        }
    });  

如何使列按文件大小排序?

4

1 回答 1

0

查看 tablesorter 的度量解析器

于 2013-07-05T22:48:04.630 回答