请问如何清除这个定时器:
p {width:100px;height:100px;background-color:green;}
input {margin-top:10px;}
$("input:eq(0)").click(function(){
var a = setInterval(round,1000);
})
function round(){
$("p").animate(
{
width:"300px",
height:"300px"
},2000)
$("p").animate(
{
width:"100px",
height:"100px"
},2000)
}
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
你那个a变量要放到外面,放在回调里,以后要清时就访问不到了。。。
清的时候需要 clearInterval(a)
clearInterval
这种答案自己搜一下多好