jQuery - 选项“盲目”在“setInterval”中仍在运行

发布于 2024-11-16 03:23:36 字数 381 浏览 1 评论 0原文

我向我的页面添加了这部分代码

    setInterval(function() {
     $('div.info').hide("blind", { direction: "vertical" }, 1000);   
}, 2000);

如果页面上存在 div.info,则该 div 正在显示,2 秒后该 div 应以 1 秒的速度隐藏。

但我正在努力解决问题,这个操作一遍又一遍地运行 - 在页面上发现 div.info,2 秒后这个 DIV 隐藏并立即再次显示,再过 2 秒再次隐藏...而且一遍又一遍...

有人可以帮助我吗,为什么这个动作仍然重新启动? 谢谢。

I added to my page this a part of code

    setInterval(function() {
     $('div.info').hide("blind", { direction: "vertical" }, 1000);   
}, 2000);

If on a page exist div.info, so that div is displaying and after 2 seconds this div should be hidden with speed 1 seconds.

But I am struggling with problem, that this action is running over and over again - on the page is discovered div.info, after 2 seconds is this DIV hide and immediately is again displayed and after another 2 seconds again hidden... And this is over and over again...

Can someone help me, please, why is this action still restarted?
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2024-11-23 03:23:36

尝试使用setTimeout(function,delayInMilliseconds)而不是setInterval。 setInterval 将函数设置为每 x 毫秒运行一次,而 setTimeout 仅运行一次。

Try using setTimeout(function, delayInMilliseconds) instead of setInterval. setInterval sets a function to run every x milliseconds whereas setTimeout only runs once.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文