2

我需要在具有以下行为的 HTML 文档中编写 javascript 代码:单击按钮时,图像开始移动(如果尚未移动),每秒向左移动一个像素。单击第二个按钮时,图像停止移动并立即重新定位到其原始坐标。

除了显示“开始”的“按钮”之外,我让一切正常工作。现在,如果我单击图像,图像每秒向左移动 1 个像素。但是,我需要将该功能转移到名为 START 的按钮上。

有谁知道如何做到这一点?谢谢!!

我的代码如下:

<html><head>


<script>

var timerid = null;


function move()
{
document.getElementById('cat').style.right = 
    parseInt(document.getElementById('cat').style.right) + 1 + 'px';    
}

window.onload=function()
{   



document.getElementById('cat').onclick=function(){

    if(timerid == null){
        timerid = setInterval("move()", 10);
    }else{
        clearInterval(timerid);
        timerid = null;
    }
}   


var button2 = document.getElementById('button2');
button2.onclick= reloadPage;

    function reloadPage(){
        window.location.reload();
    }

}


</script>
</head>
<body>

<img id="cat" src="cat.jpg" style="position:absolute;right:5px"/>

<div>
<button id="button1" type="button" style="position:absolute;left:10px;top:190px"/>START</button>
<button id="button2" type="button" style="position:absolute;left:10px;top:220px"/>STOP & RESET</button>
</div>

</body>
</html>
4

1 回答 1

1

更改catbutton1

document.getElementById('button1').onclick=function(){
                     //--^^^^^^^^----here
  if(timerid == null){
    timerid = setInterval("move()", 10);
  }else{
    clearInterval(timerid);
    timerid = null;
  }
}   
于 2013-03-29T07:12:53.383 回答