为了账号安全,请及时绑定邮箱和手机立即绑定

为什么timer不能再onload事件里声明呢

<div id="item" class="main"><span id = "spare" class = "sp">分享</span></div>

<script type="text/javascript">

window.onload = function (){

var item=document.getElementById("item");

item.onmouseover = function(){

startMove(0);

}

item.onmouseout = function(){

startMove(-400);

}

}

var timer = null;

function startMove(target){

var item=document.getElementById("item");

clearInterval(timer);

timer  = setInterval (function(){

speed = (item.offsetLeft > target)?-10 : 10;

if (item.offsetLeft == target){

clearInterval(timer);

}

else{

item.style.left = item.offsetLeft + speed + "px";

}

},30)

}

</script>


正在回答

1 回答

onload事件是页面加载就执行. 如果你在onload里面声明 启动就会执行一次,而不是鼠标进入执行。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么timer不能再onload事件里声明呢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信