gpt4 book ai didi

jquery - 清除间隔不起作用?

转载 作者:行者123 更新时间:2023-12-03 22:44:05 24 4
gpt4 key购买 nike

我对这段代码有一些问题,当我单击开始按钮时,一切都按预期工作,但是当我想使用 clearInterval 停止动画时,它不起作用,只是继续循环...我做错了什么?

 var a = function() { 
$("div").animate({height:300},"slow");
$("div").animate({width:300},"slow");
$("div").animate({height:100},"slow");
$("div").animate({width:100},"slow");
}

$(document).ready(function(){
$("start").click(function(){

setInterval(a,1000);
});

$("stop").click(function(){
clearInterval(a);

});

});

最佳答案

您应该将引用(从 setInterval 获得)传递给 clearInterval 方法来清除它。试试这个

var intervalId;
var a = function() {
$("div").animate({height:300},"slow");
$("div").animate({width:300},"slow");
$("div").animate({height:100},"slow");
$("div").animate({width:100},"slow");
}

$(document).ready(function(){
$("#start").click(function(){
intervalId = setInterval(a,1000);
});

$("#stop").click(function(){
clearInterval(intervalId);
});

});

关于jquery - 清除间隔不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8184135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com