본문 바로가기

프로그래밍/웹

버튼으로 배경색과 글자색 바꾸기

반응형

 

document.bgColor => 배경색 지정

document.fgColor => 글자색 지정

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
 <html>
 <head><title> 버튼으로 배경색 글자색 바꾸기 </title>
 <meta charset="utf-8">
  <script language="javascript">
 
       function coch(bg_color, font_color){
           document.bgColor=bg_color;
           document.fgColor=font_color; 
       }
 
  </script>
 </head>
 <body bgcolor="lightgray"><center>
     <h1> 버튼으로 배경색 글자색 바꾸기 </h1>
     <input type="button" value="RED" onClick="coch('red', 'blue')">
     <input type="button" value="BLUE" onClick="coch('blue', 'yellow')">
     <input type="button" value="YELLOW" onClick="coch('yellow', 'red')">   
</center>
 </body>
 </html>
cs
반응형