与 jquery 循环一起使用的实时脚本
我不知道如何为 jquery 循环插件编写代码。
因为当之前加载图像时这是有效的
$('#eventPic').cycle({
prev: '#previousButton',
next: '#nextButton',
timeout: 0
});
,但是当通过ajax更新图像时则它不起作用,
请帮助
这里是代码
戴夫
I don't know how can I code for the jquery cycle plugin.
cause this is working when the images are loaded previously
$('#eventPic').cycle({
prev: '#previousButton',
next: '#nextButton',
timeout: 0
});
but when the images are updated via ajax then it's not working
please help
here is the code
Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
循环插件在您调用它时初始化。如果您在初始化后加载图像,那么它不会知道它们存在。也许在你的 ajax 回调中你应该实例化循环调用。如果您提供 html/ajax 请求,有人可能会给您更多反馈。
The cycle plugin initializes when you call it. If you are loading images after it has been initialized then it is not going to have any idea that they exist. Perhaps in your ajax callback you should instantiate the cycle call. If you provide your html/ajax request someone may be able to give you more feedback.
您可以使用 jQuery livequery 插件:
http://docs.jquery.com/Plugins/livequery
You can use the jQuery livequery plugin:
http://docs.jquery.com/Plugins/livequery