拖放示例。
克隆禁用
source
我需要克隆代码
.parent('.ui-wrapper').draggable({
revert : 'invalid'
,helper:'clone'// I added this line
});
有哪些必要的变化? 如果你看一下源代码我会很感激
答案 0 :(得分:0)
将两行更改为
revert : "invalid", // note the double quotes
helper : "clone"// I added this line
在你的例子中让它对我有用。