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

无运动效果

<script>

window.onload = startMove();

var timer = null;

function startMove() {

var box1 = document.getElementById('box1');

box1.onmousemover = function() {

var box1 = document.getElementById('box1');

timer = setInterval(function() {

box1.style.left = box1.offsetLeft + 10 + 'px';

},30)

}

}

</script>

标记这段代码什么地方错了,运动没有任何效果

正在回答

3 回答

onmousemover你多打了一个m字母

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

你onmouseover打错了,多了个m

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

box1.onmouseover = function() 

没有m

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

举报

0/150
提交
取消

无运动效果

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