我想拖拽之后,还会在原来位置保留一份,现在拖拽之后原来位置消失了
$(".sidebar-nav .drag").draggable({
proxy : "clone",
revert : true,
cursor : 'auto',
onStartDrag : function (){
$(this).draggable('options').cursor='move';
},
onStopDrag : function (){
$(this).draggable('options').cursor='auto';
}
});
$("#main").droppable({
accept : ".drag",
onDrop:function(e,scource){
$(this).append(scource);
$(scource).addClass("drag-li");
}
});
Title
-
布局设置
拖动
main
admin
user
有木有大神 看下 这个怎么实现
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号