0
왜 출력에 경고가 표시되지 않습니까?Jquery가 출력 기능을 상실 할 수 있습니다.
DOP 트리거가 잘 작동하지만, 트리거 아웃되는 것은 아니다 :
$(".ui-droppable").droppable({
accept: '#cardPile div',
hoverClass: 'hovered',
drop: function(event, ui){
$(this).droppable('disable');
ui.draggable.position({ of: $(this), my: 'left top', at: 'left top' });
ui.draggable.draggable('option', 'revert', false);
},
out: function(event, ui){
alert("test");
}
});
나는이 새로운 해요 ... 감사합니다!
그래서 당신은 말? –