table1
我正在尝试从to制作拖放功能,并希望在用户拖动itme时table2
确保拖放的单元格为空。如果单元格是空的,那么我可以删除它,否则它将返回到.table2
table1
table2
table1
var dragging =null;
td = $('.table td');
$(td).draggable({
cursor:'pointer',
snap:$('td:empty')
})
$(td).droppable({
drop:function(event, ui){
if($(this).text()=='') { // $(this).is(':empty:) doesn't work either
console.log('drop now!')
}else{
console.log('not empty') //revert
}
}
})
我不确定如何将拖动的项目恢复为原样,table1
以及如何检测拖放的单元格是否已有数据。
有什么帮助吗?非常感谢!