我使用jCarousel创建滚动内容(遵循此http://sorgalla.com/projects/jcarousel/)。但是,我不想使用默认的下一个和上一个按钮,所以我想创建2个按钮来处理click事件。 EX:我有2个像这样的超链接:

<script>
jQuery(document).ready(function() {
    // Initialise the first and second carousel by class selector.
    // Note that they use both the same configuration options (none in this case).
    jQuery('#scrollArea').jcarousel({
        scroll: 10
        });
</script>
        <a>NEXT</a>
        <a>PREV</a>
    <div id="scrollArea">
<!-- CONTENT HERE -->
</div>


如何将next和prev函数绑定到上述链接?

最佳答案

看看这个例子:

http://sorgalla.com/projects/jcarousel/examples/static_controls.html

基本上,您可以在圆盘传送带的初始化中将功能附加到圆盘传送带。这是相关的代码段。

function mycarousel_initCallback(carousel) {
    jQuery('#mycarousel-next').bind('click', function() {
        carousel.next();
        return false;
    });

    jQuery('#mycarousel-prev').bind('click', function() {
        carousel.prev();
        return false;
    });
};

关于jquery - 调用jquery jCarousel的next和prev函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6420728/

10-10 10:20