2015-01-13 67 views
1

如何防止或停止拖動空td單元格, 我正在使用jQuery UI的Draggable如何防止使用jQuery UI可拖動拖動空表單元格?

我的代碼:

$("#demo table tr td").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'); 

     } 
    }); 

回答

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'); 

     } 
    }); 
相關問題