如何使用javascript或jquery将表中的行成对地变为变量?之后我想在桌子上做一个简单的排序。
<table>
<thead>
<tr>
<th rowspan="2">Visitor</th>
<td>Scheduled In</td>
<td>Time In</td>
</tr>
<tr>
<td>Scheduled Out</td>
<td>Time Out</td>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2">Santos Angelo Borodec</th>
<td>9am</td>
<td> </td>
</tr>
<tr>
<td>5pm</td>
<td> </td>
</tr>
...
</tbody>
</table>
对于每个访问者只有一行的表格,我有这个有效的JavaScript。
$('.sort-table').click(function(e) {
var $sort = this;
var $table = $('#sort-table');
var $rows = $('tbody > tr',$table);
$rows.sort(function(a, b){
var keyA = $('th',a).text();
var keyB = $('th',b).text();
if($($sort).hasClass('asc')){
return (keyA > keyB) ? 1 : 0;
} else {
return (keyA > keyB) ? 1 : 0;
}
});
$.each($rows, function(index, row){
$table.append(row);
});
e.preventDefault();
});
选择tr:nth-child(4n), tr:nth-child(4n-1)
这样的行对我不起作用。
有没有直接的方法来实现这个目标?
这是基于“jQuery - sort a table after adding a row to it”
的排序代码这是我的小提琴,创造了一个boggle board:http://jsfiddle.net/MacwT/
答案 0 :(得分:1)
尝试使用此方法对tr
。
$('.sort-table').click(function (e) {
var $sort = this;
var $table = $('#sort-table');
//Find the even rows and its next one, clone and wrap them into temp table.
var $rows = $table.find('tbody > tr:even').map(function () {
return $(this).next().andSelf().clone().wrapAll('<table />')
});
//Give each table which contains the pair to be sorted
$rows.sort(function (a, b) {
var keyA = $('th', a).text();
var keyB = $('th', b).text();
if ($($sort).hasClass('asc')) {
return (keyA > keyB) ? 1 : 0;
} else {
return (keyA > keyB) ? 1 : 0;
}
});
var tbody = $('tbody', $table).empty();//empty the tbody
$.each($rows, function (index, row) {
$(tbody).append($(row).unwrap());//Unwrap the table and get the rows alone.
});
e.preventDefault();
});