I'm |
Developer, Designer, Photographer
GET IN TOUCH
- Buk-gu, Busan, Republic of Korea
- ungdoli0916@naver.com
- Kakao ID : Ungdoli
Developer, Designer, Photographer
[즐거'웅'코드] 목차 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.04.28[즐거'웅'코드] 목차 jQuery 예제 소스 구현 예시 jQuery 1 2 3 $("(대상)").css("background", "(값)"); 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 background 변경하기 div { width: 200px; height: 50px; border: 1px solid #bbbbbb; background: #fbfbfb; } function test() { $("#test_obj").css("background", "#db0d36"); } 구현 예시
2021.04.26