为什么我的根本停不下来
window.onload=function(){
var odiv=document.getElementById("div1");
odiv.onmouseover=function(){
huaguo();
}
}
var timer=null;
function huaguo(){
var odiv=document.getElementById("div1");
timer=setInterval(function(){
if(odiv.offsetLeft==0) {
clearInterval(timer);
}
else{
odiv.style.left=odiv.offsetLeft+10+"px";
}
},30)
}