답변

0

헬퍼는 비주얼 전용입니다.

당신은 이미지를 복제하고 드롭 .. 그런 걸 시도하려는 경우 :

$("#table4").droppable({ 
    accept: "#page", 
    tolerance: "touch", 
    drop: function (event, ui) { 
     ui.draggable.clone().appendTo(this); 
    } 
}); 
관련 문제