如果我使用有错误的代码,为什么我的下拉列表停止工作?

时间:2016-11-24 05:12:55

标签: javascript owl-carousel

此下拉代码正常运行:

$(document).ready(function(){

 $('.owl-wrapper').owlCarousel({
    loop:true,
    margin:0,
    nav:true,
    autoPlay: 100,
    responsive:{
        0:{
            items:1
        },
        600:{
            items:2
        },
        1000:{
            items:3
        }
    }
})

此下拉代码无效:为什么?

$(document).ready(function(){

 $('.owl-wrapper').owlCarousel({
    loop:true,
    margin:0,
    nav:true,
    autoPlay: 100,
    responsive:{
        0:{
            items:
        },
        600:{
            items:2
        },
        1000:{
            items:3
        }
    }
})

1 个答案:

答案 0 :(得分:0)

您错过了为第二个示例中的项目赋值。你需要给它一个你在第一个例子中给出的值。

 $(document).ready(function(){

 $('.owl-wrapper').owlCarousel({
    loop:true,
    margin:0,
    nav:true,
    autoPlay: 100,
    responsive:{
        0:{
            items:1
        },
        600:{
            items:2
        },
        1000:{
            items:3
        }
    }
});

您可以随时查看here以了解如何使用owlCarousel。