2015-01-13 3 views

답변

1

이 시도 :

$("#demo table tr td:not(:empty)").draggable({ 
     helper: 'clone', 
     revert: 'invalid', 
     cursor: "move", 
     start: function (event, ui) { 
      setValues($(this).attr('id'),$(this).val()); 

     }, 

     stop: function (event, ui) { 
      $(this).css('opacity', '1'); 

     } 
    });