这是我第一次显示页面(实际上行和列中的数据是从服务器代码和数据库生成的)。还请注意每个数据的属性
<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 事件上读取该数据并在排序后将数据附加到“tablediv”中的 js 代码。
$(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 中保留属性。我在这里使用的数组需要更多的实现......:-(