wEb/javascript

jquery를 이용한 필요없는 셀지우기

dd2i 2012. 4. 20. 11:14
반응형

thead 에 last th 지우기

$('thead tr').find('th:last').filter(function(){
 if($(this).parent().children().length >=  3){
  return $(this);
 }
}).remove();


tbody에 last td 지우기

$('tbody tr').find('td:last').filter(function(){
 if($(this).parent().children().length >=  9){
  return $(this);
 }
}).remove();

firefox의 console 탭에서 위의 명령어들을 실행시키고. 바뀐 HTML을 복사해서 docs에 대치

반응형