日期:2014-05-16 浏览次数:20396 次
function TableSorter(){};
TableSorter.prototype = {
sortTable:function(id){
var $ = this,
table = $.ID(id),
tbody = $.TN(table,"tbody")[0],
rows = $.TN(tbody,"tr"),
index = [];
//把要排序的行的引用放到index数组中。
for (var i=0,l = rows.length; i < l; i++) {
index[i] = rows[i];
}
}