「jQuery入門」addClass()とremoveClass()で行の色を変更するコード

方法1
$(“#tab tr").hover(function(){
$(this).children(“td").addClass(“hover")
},function(){
$(this).children(“td").removeClass(“hover")
});

方法2
$(“#tab tr:gt(0)").hover(function(){
$(this).children(“td").addClass(“hover");
},function(){
$(this).children(“td").removeClass(“hover");
});

jQuery

Posted by arkgame