gpt4 book ai didi

javascript - 我无法停止 Jquery 中的 setInterval

转载 作者:行者123 更新时间:2023-11-28 20:05:48 25 4
gpt4 key购买 nike

你能帮我吗,当我将鼠标悬停在#headline_image 上时,如何停止此间隔?

$("#headline li").live('mouseover', function() { 
var HL = $(this).attr("data-name");
$("#headline_image").html("<img src='" + HL + "'>"); });

setInterval(function()
{ $('#headline li[data-id=' + count + ']').mouseover(); },4000); });

我在mouseover函数中尝试如下;但没有成功

clearInterval(function()  { $('#headline li').mouseover(); });

最佳答案

需要使用setInterval返回的引用来清除它

var interval = setInterval(function () {
$('#headline li[data-id=' + count + ']').mouseover();
}, 4000);

然后

clearInterval(interval)

还要确保在这两个代码段共享的范围内声明变量间隔

关于javascript - 我无法停止 Jquery 中的 setInterval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20849882/

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