我有两张桌子。一个表包含数据,另一个是空的。单击每一行中存在的特定字段时,我希望该行被隐藏并同时显示在空表中。
我使用的 Html 表具有这种类型结构:我希望行在单击时来回移动<span>@<span>
<table class='table1' id='frm1'>
<tr>
<th>
Name</th>
<th>
Address</th>
<th>
Amount
</th>
</tr>
<tr id="one">
<td><span class="s1">@</span>
John
</td>
<td>
California
</td>
<td>
$4000</td>
</tr>
<tr id="two">
<td><span class="s1">@</span>
tedd
</td>
<td>
California
</td>
<td>
$4000</td>
</tr>
<tr id="three">
<td><span class="s1">@</span>
John
</td>
<td>
florida
</td>
<td>
$8000</td>
</tr>
</table>
</div>
<div class='text'></div>
<div class='frm'>
<table id='frm2'>
</table>
`
我使用的 jQuery 代码:
$('.s1').click(function(){$(this).closest('tr').clone().appendTo('#frm2').end().end().hide();});
$('.s1').click(function () {
$("frm2 tr").attr('id', function() {return $(this).attr('id')});
alert($("frm2 tr").attr('id'));
});/*tried to set the id's of table 1 as id's to table 2*/
我想来回移动行。我无法引用移动的行