jQuery - 选项“盲目”在“setInterval”中仍在运行
我向我的页面添加了这部分代码
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用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.