gpt4 book ai didi

javascript - 如何生成序列id并上下移动表行并动态调整每行的序列ID?

转载 作者:行者123 更新时间:2023-12-02 18:38:30 24 4
gpt4 key购买 nike

1.我有两个表table1和table2,这里当您单击“添加”按钮时,会将选中的行从table1移动到table2。当内容从 table1 添加到 table2 时,我必须生成一个从上到下从 1 到 n 的序列 Id。当我将行从 table1 移动到 table2 时,如何生成此序列 id?

2. 其次,我必须分别使用向上和向下按钮向上和向下移动 table2 中的行。问题是我需要根据表行移动到的位置更改序列值。例如:如果我将行向下移动 1 行,则序列值必须从 1 更改为 2。但是,第一行序列值需要从 2 更改为 1,因此始终保持从 1 到 n 的序列顺序,无论行的移动方式。

任何想法将不胜感激。

这是jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Insert title here</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$('#add').on("click", function(){
$('#one tbody input:checked').parent().parent().clone().appendTo("#two tbody");
return false;
});

$('#remove').on("click", function(){
$('#two tbody input:checked').parent().parent().remove();
return false;
});

$(".up,.down").click(function(){
var row = $('#two tbody input:checked').parents("tr:first");
if ($('#two tbody input:checked').is(".up")) {
row.insertBefore(row.prev());
} else {
row.insertAfter(row.next());
}

//return false;
});
});
</script>
</head>
<body>
<table id="one" style="border:1px solid red;">
<caption>Table 1</caption>
<thead>
<tr>
<th></th>
<th >ID</th>
<th> Name</th>
<th>System</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" /></td>
<td>12</td>
<td>Sam</td>
<td>FSS</td>
</tr>

<tr>
<td><input type="checkbox" /></td>
<td>87</td>
<td>Harry</td>
<td>MSS</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td>23</td>
<td>Rita</td>
<td>MVV</td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td>65</td>
<td>Tom</td>
<td>RDD</td>
</tr>
</tbody>
</table>

<table id="two" style="border:1px solid green;">
<caption>Table 2</caption>
<thead>
<tr>
<th></th>
<th >ID</th>
<th>Sequence No</th>
<th>Name</th>
<th>System</th>
</tr>
</thead>
<tbody>

</tbody>

</table>
<br><hr><br>
<button id="add">Add</button>
<button id="remove">Remove</button>
<button class="up">UP</button>
<button class="down">DOWN</button>
</body>
</html>

还有一件事,当我单击向上或向下按钮时,选中的行仅向下移动,不知道为什么?

最佳答案

你可以这样做:

$('#add').on("click", function(){
var clone=$('#one tbody input:checked').parent().parent().clone();
clone.each(function(){
$(this).appendTo("#two tbody").attr("id",$(this).index());
});
return false;
});

$('#remove').on("click", function(){
$('#two tbody input:checked').parent().parent().remove();
$('#two tbody tr').each(function(){
$(this).attr("id",$(this).index());
});
return false;
});

$(".up,.down").click(function(){
var row = $('#two tbody input:checked').parent().parent();
if ($(this).is(".up")) {
row.each(function(){
var previndex=$(this).prev().index();
if(previndex>=0){
var rowindex=$(this).index();
$(this).attr("id",previndex);
$(this).prev().attr("id",rowindex);
$(this).insertBefore($(this).prev());
}
});
} else {
$(row.get().reverse()).each(function(){
var nextindex=$(this).next().index();
if(nextindex>=0){
var rowindex=$(this).index();
$(this).attr("id",nextindex);
$(this).next().attr("id",rowindex);
$(this).insertAfter($(this).next());
}
});
}

});

http://jsfiddle.net/QM8Pg/

关于javascript - 如何生成序列id并上下移动表行并动态调整每行的序列ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17068093/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com