这是我第一次显示页面(实际上,行和列中的数据是从服务器代码和数据库生成的)。还请注意每个数据的属性
<table>
<tr>
<td id="1" class="decorate">Item3</td>
<td class="decorate"><p>Description<p></td>
</tr>
<tr>
<td class="decorate">Item1</td>
<td class="decorate"><p>Description1</p><p>Description2</p></td>
</tr>
<tr>
<td id="2" class="decorate">Item2</td>
<td class="decorate"><p>Description3<p></td>
</tr>
</table>
<div id="tablediv"></div>
这是在OnLoad事件上读取该数据的js代码,并在对它们进行排序后将数据附加到“tablediv”。
$(document).ready(function() {
var arr = new Array();
$('table tr').each(function() {
var $row = $(this);
var key = $row.find('td:first').html();
var value = $row.find('td:last').html();
console.log(value);
arr.push([key, value]);
});
arr.sort(function(a, b) {
var valueA, valueB;
valueA = a[0]; // sort by the first value of array
valueB = b[0];
if (valueA < valueB) {
return -1;
}
else if (valueA > valueB) {
return 1;
}
return 0;
});
var root=document.getElementById('tablediv');
var table=document.createElement('table');
var tbo=document.createElement('tbody');
var row, cell;
for(var i=0;i<arr.length;i++)
{
row=document.createElement('tr');
for(var j=0;j<2;j++)
{
cell=document.createElement('td');
cell.appendChild(document.createTextNode(arr[i][j]));
row.appendChild(cell);
}
tbo.appendChild(row);
}
table.appendChild(tbo);
root.appendChild(table);
});
但是,我不喜欢将它放在tablediv
中,而是完全替换上一个表(前一个表没有id或类可以告诉我在jquery代码中的位置)。
我该怎么做?而且我还想在前一个表的td中保留属性。我在这里使用的数组需要更多实现......: - (
答案 0 :(得分:0)
只需排序:http://jsfiddle.net/CrossEye/T44Nn/
var $table = $("table")
var rows = $table.find("tr").toArray();
rows.sort(function(a, b) {
var left = $(a).find("td:first").html(), // .text() ??
right = $(b).find("td:first").html();
return left < right ? -1 : left > right ? +1 : 0;
});
$(rows).each(function() {
$(this).appendTo($table);
});
这意味着您不必从表到表复制任何内容,只需重复使用这些行。