我希望每次按钮点击增加10 px但它会循环
<html>
<input type="button" id="perspectivePlus" value="perspective+10px">
</html>
<script>
function perspectivePlus(){
var boxBig=document.getElementById('boxBig');
var perspective = document.getElementById('perspective');
for(var i =0;i<100;i+10){
boxBig.style.width=i+"px";
perspective.style.perspective =i+"px";
return i
}
}
var clickme=Gid('perspectivePlus').addEventListener('click',perspectivePlus);
</script>
答案 0 :(得分:0)
删除&#34;返回我&#34;。这是一个突破循环。