鲁中-O-华仔

夫君子之行,静以修身,俭以养德,非淡泊无以明志,非宁静无以致远。

导航

1_行为与样式分离

HTML代码:

1 <div id="box"></div>

CSS代码:

1 #box{ width:100px; height:100px; background:#99C;}

JS代码:

 1 window.onload=function(){
 2     var obox=document.getElementById('box');
 3     obox.onmouseover=tored;
 4     obox.onmouseout=toblue;
 5     }
 6 function tored(){
 7     var obox=document.getElementById('box');
 8     obox.style.width='200px';
 9     obox.style.height='200px';
10     obox.style.background='red';
11     }
12 function toblue(){
13     var obox=document.getElementById('box');
14     obox.style.width='100px';
15     obox.style.height='100px';
16     obox.style.background='#006';
17     }

 

posted on 2014-08-26 10:26  鲁中-O-华仔  阅读(181)  评论(0编辑  收藏  举报