고향집뚝배기
jquery에서 테이블에 마우스 오버시 해당 행의 배경색상 변경하기
여수공동체
jQuery
0
1250
2014.10.22 11:49
jquery에서 테이블(표)에 마우스 오버시 해당 행(TR)의 배경색상을 변경하는 방법입니다.
$(document).ready(function(){
$('table tr').mouseover(function(){
$(this).css("backgroundColor","#ccc");
});
$('table tr').mouseout(function(){
$(this).css("backgroundColor","#fff");
});
});
$(this).css("backgroundColor","#ccc");
});
$('table tr').mouseout(function(){
$(this).css("backgroundColor","#fff");
});
});