(즐거웅코드) 제이쿼리 background-color 변경하기
[즐거'웅'코드] 목차 jQuery 예제 소스 구현 예시 jQuery 1 2 3 $("(대상)").css("background-color", "(값)"); 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 background-color 변경하기 div { width: 200px; height: 50px; border: 1px solid #bbbbbb; background-color: #fbfbfb; } function test() { $("#test_obj").css("background-color", "#db0d36"); } 구현 예시
2021. 4. 28. 07:38