JS里setInterval和clearInterval的小问题,请教下,谢谢啦
无标题文档 var a=0;function move(){ a=a+30;document.getElementById('we').style.left=a+'px';} function showA(){ timer=window.setInterval('move()',200);} function showB(){ window.clearInterval(timer);} timer=setInterva在...