首先,我很抱歉,如果我的英语不完美,那就很抱歉:/
我想知道是否:
$('#drop1').droppable({
accept: '#drag1',
if (drop: function()) {
$(this).css('background-color', 'green');
$('drag1').draggable(disabled)
} else
$(this).css('background-color', 'red');
});

存在..
(没有if(drop)它可以工作,但它保持绿色,这就是为什么我想要一个" if {} else {})
ty< 3
答案 0 :(得分:0)
您可以通过设置'禁用'来启用/停用可放置的droppables。选项。
$('#drop1').droppable('option', 'disabled', true);
示例: