jQuery 自动调用函数
如何每 X 秒调用一个给定的函数?
在本例中,我制作了一个滚动一些图像的函数。我希望图像根据给定的时间间隔(例如每 5 秒)改变一次,但我真的不知道。
How do I call a given function every X seconds?
In this case, I made a function that scrolls some images. I want the image to change based on a given interval of time, for example, every 5 seconds, but I really have no idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里不需要 jQuery,使用
setInterval()
会做:或者匿名版本:
No need for jQuery here, plain JavaScript using
setInterval()
will do:Or the anonymous version:
尝试
Try
如果您希望 jQuery 为您做这件事,有一个插件,jquery.cycle.all。这将使创建过渡变得非常容易。如果您已经在使用 jQuery,那么它可能是一个不错的选择。否则,
setInterval
很容易与已经提到的其他海报一起使用。If you want jQuery to do it for you, there is a plugin, jquery.cycle.all. This will make creating the transition very easy. If you're using jQuery already, then it might be a good fit. Otherwise, the
setInterval
is easy to work with that other posters already mentioned.