jQuery 테이블 작업

488 단어 jquery
$("#tableid tr:gt(0)").each(function(i){

     $(this).children("td").each(function(j){

          alert(" "+i+" , "+j+" ");

          if(0 == i && 2 == j) { 

               $(this).css({"background-color":"red"});

          }

     });

});    


 2.dom-jQuery
var td = document.getElementById('tableid').rows[i].cells[j];

var $td = $(td);//jquery  


좋은 웹페이지 즐겨찾기