HTML 이름주소 홍길동서울시 이순신제주시 왕건경기도 JS /** * */ $(document).ready(function(){ $("tr:odd").css("backgroundColor","orange") $("tr:first").css("backgroundColor","black").css("color","white") //or// $("tr:first").css({"backgroundColor":"black","color":"white"}) //css에서는 background-color로 하는데 제이쿼리에서는 대문자로 구분함 backgroundColor //css에서는 (스타일시트만들고 연결해서 ) /*tr:nth-child(even){ background-color:yellow; }*/ //css..