到目前为止,我有this
$('.sortHolder').sortable({
placeholder: "ui-state-highlight",
connectWith: ".sortHolder",
items : ':not(.noSort)'
});
jQuery('.outer').sortable({
placeholder: "ui-state-highlight",
connectWith: ".outer",
items : ':not(.noSort)'
});
我想我的jquery中缺少了一块
所以目标是
这是我的问题,灰色现在可以变成绿色,大的灰色现在可以变成其他灰色,而功能不是我想要的。那是我现在唯一的问题。我可能缺少一些非常简单的东西。
答案 0 :(得分:0)
请尝试下面的代码,看看操场,因为我也更改了HTML上的一些类:https://jsfiddle.net/zks5ojwh/5/
$('.grey').sortable({
placeholder: "ui-state-highlight",
connectWith: ".grey",
items : '.blue'
});
$('.sortHolder').sortable({
placeholder: "ui-state-highlight",
items: '.grey'
});