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 }