2012-01-13 3 views

답변

0

숨기려면 행

$(document).ready(function() { 
     $("tr").filter(function() { 
      return $('td', this).length && !$('table', this).length 
     }).click(function() { 
      $(this).remove(); 
     }); 
    }); 
관련 문제