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