将参数传递给 jcarousel itemLoadCallback 方法

发布于 2024-11-25 05:02:32 字数 59 浏览 0 评论 0原文

我们如何将参数传递给 jcarousel itemLoadCallback 方法?

谢谢

How can we pass arguments to jcarousel itemLoadCallback method?

Thanks

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

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

发布评论

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

评论(1

看轻我的陪伴 2024-12-02 05:02:32

据我所知,您不能直接将参数传递给 itemLoadCallback 。 itemLoadCallback 执行您给它显式传递这些参数的函数。您必须修改 jcarousel 才能发送其他参数。我还想了解您想要实现的目标,因为也许还有另一种方法可以实现您想要的目标。你可以做类似下面的事情,这应该足以满足我假设你正在尝试做的事情:

这是我会如何做的

jQuery('#mycarousel').jcarousel({
    itemLoadCallback: function (carousel, state) {
        //get Additional Information
        //doStuff with additional info
    }
});

You can't directly pass arguments to the itemLoadCallback as far as I can see. itemLoadCallback executes the function you give it passing in explicitly those arguments. You'd have to modify jcarousel to send additional arguments. I'd also like to understand what you're trying to achieve as maybe there is another way to achieve what you want. You could do something like the following, which should suffice from what I assume you're trying to do:

Here is how I would do it

jQuery('#mycarousel').jcarousel({
    itemLoadCallback: function (carousel, state) {
        //get Additional Information
        //doStuff with additional info
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文