简体   繁体   中英

Why does my dropdown stop working if I use code with errors?

This drop down code is working:

$(document).ready(function(){

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

This drop down code is not working: Why?

$(document).ready(function(){

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

You have missed to give the value to items in your second example. You need to give it a value as you have given in your first example.

 $(document).ready(function(){

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

You can always check here to know how to use the owlCarousel.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM