Jquery
我正在尝试使用UI进行拖放
我需要两个表之间的拖放功能。
table1
<table class='table'>
....
</table>
table2
<table class='table'>
....
</table>
我希望用户cell
从表 1 拖动到表 2。
下面的代码实现了这一点
var dragging =null;
obj = $('.table td');
$(obj).draggable({
cursor:'pointer',
snap:$('td span'),
revert: 'invalid'
})
$(obj).droppable({
//only accept the drop if the cell is empty.
accept: function(e){
return $(this).text().trim()=="";
},
//replace anything items on table 2.
drop:function(event, ui){
$(this).html(' ').droppable( 'disable' );
}
})
我的问题是:在我将itemA
表 1 拖到表 2 之后。我似乎无法itemA
再在表 2 上拖动。我希望用户仍然能够拖动itemA
,即使它在表 2 中。
我不确定这里出了什么问题。任何人都可以帮助我吗?非常感谢