1
我在jquery中用3列生成了一個表:數字,名稱,營業額。像這樣:如何在jquery中對錶中的單個列進行排序
$(".tab").append("<tr><td>+ index + "</td><td>+ name + "</td><td>+ turnover + "</td></tr>);
我用「tablesorter」排序第3列。
$(".tab").tablesorter({
// sort on the seconde column , desc asc
sortList: [[2,-1]]
});
的問題是,我想我的第一列「指數」並沒有改變,因爲它表明只是從1數到7,但是當我做的第3列我的第一列排序也將changes.I像一些想法來解決這個問題,謝謝
http://stackoverflow.com/questions/7849558/sort-only-one-column-with-jquery-and-tablesorter –
http://stackoverflow.com/questions/8942974/how-to-disable-sorting-on-column-in-jquery-tablesorter –
http://stackoverflow.com/questions/4015320/jquery-tablesorter-plugin-disabling-sorting-on-some-columns –