i구야 2015. 2. 10. 15:14

<html>
 <head>
 <style type="text/css">
 #con { background:skyblue; width:200px; height:200px; }
 </style>
 <script>
 var array=["aaa","bbb","ccc"];

 function a(){
for(i=0;i<3;i++){
 con.innerHTML+=array[i];
}
 }
 </script>
 </head>
 <body>
 <input type="button" onclick="a()">
 <div id="con"></div>
 </body>
</html>