问问这个怎么清除清定时器

请问如何清除这个定时器:

div {width:100px;height:100px;background-color:green;}
input {margin-top:10px;}

<div></div>
<input type = "button" value = "点我开始">
<input type = "button" value = "拜拜">

$("input:eq(0)").click(function(){
var a = setInterval(round,1000);

})
function round(){
$("div").animate(

   {
   width:"300px",
   height:"300px"
   },2000)

$("div").animate(

   {
   width:"100px",
   height:"100px"
   },2000)

}

阅读 2.3k
2 个回答

你那个a变量要放到外面,放在回调里,以后要清时就访问不到了。。。

清的时候需要 clearInterval(a)

clearInterval
这种答案自己搜一下多好

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题