我使用此处给出的代码使用jquery在gridview中向上/向下移动行,这非常有效,但是如何实现将行移动到表中的第一个位置或最后一个位置?
问问题
17659 次
3 回答
17
添加顶部和底部链接,并在第一行/最后一行之后/之前插入:
演示
JS:
$(document).ready(function(){
$(".up,.down,.top,.bottom").click(function(){
var row = $(this).parents("tr:first");
if ($(this).is(".up")) {
row.insertBefore(row.prev());
} else if ($(this).is(".down")) {
row.insertAfter(row.next());
} else if ($(this).is(".top")) {
row.insertBefore($("table tr:first"));
}else {
row.insertAfter($("table tr:last"));
}
});
});
HTML:
<table>
<tr>
<td>One</td>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
<a href="#" class="top">Top</a>
<a href="#" class="bottom">Bottom</a>
</td>
</tr>
<tr>
<td>Two</td>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
<a href="#" class="top">Top</a>
<a href="#" class="bottom">Bottom</a>
</td>
</tr>
<tr>
<td>Three</td>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
<a href="#" class="top">Top</a>
<a href="#" class="bottom">Bottom</a>
</td>
</tr>
<tr>
<td>Four</td>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
<a href="#" class="top">Top</a>
<a href="#" class="bottom">Bottom</a>
</td>
</tr>
<tr>
<td>Five</td>
<td>
<a href="#" class="up">Up</a>
<a href="#" class="down">Down</a>
<a href="#" class="top">Top</a>
<a href="#" class="bottom">Bottom</a>
</td>
</tr>
</table>
于 2013-05-13T14:50:25.690 回答
1
你可以做
$(document).ready(function(){
$(".first,.last").click(function(){
var row = $(this).parents("tr:first");
var rows= row.parents().find("tr");
if ($(this).is(".first")) {
row.insertBefore(rows[0]);
} else {
row.insertAfter(rows[rows.length]);
}
});
});
于 2013-05-13T14:49:56.687 回答
0
$(document).ready(function(){
$(".first,.last").click(function(){
var row = $(this).parents("tr:first");
var rows= row.parents().find("tr");
if ($(this).is(".first")) {
row.insertBefore(rows[0]);
} else {
row.insertAfter(rows[rows.length]);
}
});
});
于 2016-08-02T13:37:09.947 回答