与 jquery 循环一起使用的实时脚本

发布于 2024-12-19 10:28:34 字数 345 浏览 0 评论 0原文

我不知道如何为 jquery 循环插件编写代码。

因为当之前加载图像时这是有效的

    $('#eventPic').cycle({
    prev:   '#previousButton',
    next:   '#nextButton',
    timeout: 0
});

,但是当通过ajax更新图像时则它不起作用,

请帮助

这里是代码

http://jsfiddle.net/FNsNG/

戴夫

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

http://jsfiddle.net/FNsNG/

Dave

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

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

发布评论

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

评论(2

岛歌少女 2024-12-26 10:28:34

循环插件在您调用它时初始化。如果您在初始化后加载图像,那么它不会知道它们存在。也许在你的 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.

各自安好 2024-12-26 10:28:34

您可以使用 jQuery livequery 插件:

http://docs.jquery.com/Plugins/livequery

$('#eventPic').livequery(function(){
    $(this).cycle({
    prev:   '#previousButton',
    next:   '#nextButton',
    timeout: 0
    });
});

You can use the jQuery livequery plugin:

http://docs.jquery.com/Plugins/livequery

$('#eventPic').livequery(function(){
    $(this).cycle({
    prev:   '#previousButton',
    next:   '#nextButton',
    timeout: 0
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文