问答详情
源自:2-1 JS速度动画

哪里错了?

<title>无标题文档</title>

</head>

<style>

#div1{width:200px;

height:200px;

background:red;

position:absolute;

left:0;

top:200px;

}

</style>

<script>

window.onload=function(){

var oDiv=document.getElementById("star");

star.onclick= function(){

  starmove(300);

}

}

var timer=null

function starmove(iTarget){

clearInterval(timer);

var oDiv=document.getElementById("div1");

timer=setInterval(function(){

    if(oDiv.offsetLeft==iTarget){

      clearInterval(timer);

    }else{

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

    }

 

},30)

}

</script>

<body>

<input  id=star type="button" value="开始"/>

<div id=div1>

</div>

</body>

</html>


提问者:狂四郎 2016-12-13 11:22

个回答

  • zpw0014065559
    2016-12-13 11:44:40
    已采纳

    speed没定义,id没有双引号