获取的是div的id,为什么触摸span,会让div动呢?
window.onload=function()
{
var oDiv1=document.getElementById('div1');
oDiv1.onmouseover=function()
{
startMove();
}
}
var timer=null;
function startMove()
{
var oDiv1=document.getElementById('div1');
clearInterval(timer);
timer=setInterval(function()
{
if(oDiv1.offsetLeft==0)
{
clearInterval(timer);
}
else{
oDiv1.style.left=oDiv1.offsetLeft+10+'px';
}
},30)
}
</script>
</head>
<body>
<div id="div1">
<span>分享</span>
</div>