Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我正在与angular Js. 我正在通过拖放创建两个 div
angular Js
这是jsfiddle
我需要的是,当我将一个 div 拖入另一个时,它应该克隆而不是移动。表示拖放元素应保留在两个 div 中。我怎样才能做到这一点 ?
在您的 drop 函数中尝试此代码:
$(this).append(ui.draggable.clone());
看到这个小提琴:http: //jsfiddle.net/zHZxp/1/