求哪位大神帮我看一下是哪里出问题,就是停不下来,检查了很多遍了。
有没有大神帮我看一下,不知道哪里出问题了,就是停不下来,检查了很多遍了。纠结
window.onload=function(){
var oDiv=document.getElementById("div1");
oDiv.onmouseover=function(){
startMove();
}
}
var timer=null;
function startMove(){
var oDiv=document.getElementById("div1");
timer=setInterval(function()
{
if(oDiv.offsetLeft==0)
{
clearInterval(timer);
}
else
{
oDiv.style.left=oDiv.offsetLeft+10+"px";
}
},30)
}