(즐거웅코드) 자바스크립트 background-color 변경하기
[즐거'웅'코드] 목차 JAVASCRIPT 예제 소스 구현 예시 JAVASCRIPT 1 2 3 document.getElementById('(아이디명)').style.backgroundColor = "(값)"; 예제 소스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 background-color 변경하기 div { width: 200px; height: 50px; border: 1px solid #bbbbbb; background-color: #fbfbfb; } function test() { document.getElementById('test_obj').style.backgroundColor = "#db0d36"; } 구현 예시
2021. 4. 10. 22:34