gpt4 book ai didi

javascript - 如何在 struts 2 中将一个表的内容传输到另一个表?

转载 作者:行者123 更新时间:2023-11-30 08:07:02 24 4
gpt4 key购买 nike

我有两个表显示两个列表。这是我的jsp

<%@page  contentType="text/html;charset=UTF-8"language="java"pageEncoding="UTF-8"%>
<%@taglib prefix="s"uri="/struts-tags"%>
<!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>

</head>
<body>
<s:form name="tableForm"method="post">
<th>
<s:submit action="verify" key="Add"></s:submit>

</th>
<table id="one">
<thead>
<tr>
<th ></th>
<th> Id</th>
<th>Name</th>
<th>Status</th>
<th>Type</th>
<th>RollUp Type</th>
<th>System</th>
</tr>
</thead>
<tbody>
<s:iterator value="formList1">
<tr>
<td><s:checkbox name="checked" fieldValue="%{#attr.ID}" theme="simple" ></s:checkbox>
</td>
<td><s:property value="ID"/></td>
<td><s:property value="NAME"/></td>
<td><s:property value="STATUS"/></td>
<td><s:property value="TYPE"/></td>
<td><s:property value="ROLLUPTYPE"/></td>
<td><s:property value="UNIT"/></td>

</tr>
</s:iterator>
</tbody>
</table>

<table id="two">
<thead>
<tr>
<th ></th>
<th> Id</th>
<th>Name</th>
<th>Status</th>
<th>Type</th>
<th>RollUp Type</th>
<th>System</th>
</tr>
</thead>
<tbody>
<s:iterator value="formList2">
<tr>
<td><s:checkbox name="checked" fieldValue="%{#attr.ID}" theme="simple" ></s:checkbox>
</td>
<td><s:property value="ID"/></td>
<td><s:property value="NAME"/></td>
<td><s:property value="STATUS"/></td>
<td><s:property value="TYPE"/></td>
<td><s:property value="ROLLUPTYPE"/></td>
<td><s:property value="UNIT"/></td>

</tr>
</s:iterator>
</tbody>

</table>
<s:a href="#" id="add">add &gt;&gt;</s:a>
<s:a href="#" id="remove">&lt;&lt; remove</s:a>
</s:form >
</body>
</html>

在这里,我想在单击添加时将选中的行从表 1 移动到表 2,同样地,当我单击删除时,将选中的行从表 2 移动到表 1。我在这个链接上找到了一个类似的例子 http://jsfiddle.net/AkVTw/1/但它在我的 jsp 中不起作用。

如果您能向我推荐一些使用 jQuery/javascript 实现此功能的示例代码,那将非常有帮助。

我还想知道是否可以在 struts 2 中使用 s:optiontransferselect 标签实现此功能?

最佳答案

您可以使用 jquery 轻松做到这一点。 Jquery 具有针对此类型功能的“appendTo”功能。

$(document).ready(function(){
$('#add').on("click", function(){
$('#one tbody input:checked').parent().parent().appendTo("#two tbody");
});

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

我创建了 Demo Link .你可以测试一下。

关于javascript - 如何在 struts 2 中将一个表的内容传输到另一个表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16634762/

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