1. table1 と table2 の 2 つのテーブルがあります。ここで [追加] ボタンをクリックすると、チェックされた行が table1 から table2 に移動します。コンテンツが table1 から table2 に追加されるため、上から下まで 1 から n の範囲のシーケンス ID を生成する必要があります。table1 から table2 に行を移動するときに、このシーケンス ID を生成するにはどうすればよいですか?
2.次に、[UP] ボタンと [DOWN] ボタンをそれぞれ使用して、table2 の行を上下に移動する必要があります。問題は、テーブル行の移動先に応じてシーケンス値を変更する必要があることです。例: 行を 1 行下に移動すると、シーケンス値を 1 から 2 に変更する必要があります。行の移動方法。
どんなアイデアでも大歓迎です。
ありがとう。
これは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>
もう1つ、ここでUPまたはDOWNボタンをクリックすると、チェックされた行が下にしか移動しません。なぜですか?