关于格式问题
格式里面是setInterval(“clock()”,1000)或者setInterval(clock,1000)我写了一个点击按钮移动的写错了写成了setInterval(clock(),1000)发现还是可以只不过是要点击一次执行一次不会一直自己执行,当然改正后会一直执行。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#div1{
width:200px;
height:200px;
border:2px solid red;
position:absolute;
left:0px;
top:0px;
z-index:-1;
}
</style>
<script type="text/javascript">
function startqwe(){
var qwe=document.getElementById('div1');
function moveqwe(){
//
qwe.style.left=qwe.offsetLeft+1+'px';
qwe.style.top=qwe.offsetTop+1+'px';
}
setInterval(moveqwe(),30);
}
</script>
</head>
<body>
<div id="div1"></div>
<input type="button" value="点击开始运动" onclick="startqwe()" />
</body>
</html>