請問如何清除這個定時器: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)}
問問這個怎么清除清定時器
慕田峪9158850
2018-08-07 10:09:35