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)
}
怎么不能停啊
oDiv.offsetLeft永远不会取到0这个值,所以就不会停咯。