您可以将表数据读入二维数组,然后用转置矩阵覆盖表数据。
function reArrange() {
var table = $('table#theTable');
// we will store all the table-data in a two-dim array:
var data = new Array();
// find all rows (row-index: i):
$(table).find('tr').each(function(i, row) {
// find all cells in this row (col-index: j):
$(row).find('td').each(function(j, cell) {
// make sure, we got the array right:
if ( data[j] === undefined ) {
data[j] = new Array();
}
// use col-index as first index in the array:
data[j][i] = $(cell).html();
});
});
// reset table:
$(table).find('tr').remove();
// re-fill table
$(data).each(function(i, elem){
var row = $('<tr/>');
$(elem).each(function(j, col) {
cell = $('<td/>').html(col);
$(row).append(cell);
});
$(table).append(row);
});
}
reArrange();
看看这个 jsFiddle:http: //jsfiddle.net/66YpC/2/
我希望,这就是你要找的。如果您需要有关代码的更多信息,请告诉我!