【发布时间】:2013-05-13 14:26:36
【问题描述】:
我使用here 给出的代码使用 jquery 在 gridview 中向上/向下移动行,这非常有效,但是如何实现将行移动到表中的第一个位置或最后一个位置?
【问题讨论】:
我使用here 给出的代码使用 jquery 在 gridview 中向上/向下移动行,这非常有效,但是如何实现将行移动到表中的第一个位置或最后一个位置?
【问题讨论】:
添加顶部和底部链接,并在第一行/最后一行之后/之前插入:
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>
【讨论】:
你可以的
$(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]);
}
});
});
【讨论】:
$(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]);
}
});
});
【讨论】: