Bootstrap Carousel Jumps to top of page when advancing

前端 未结 12 2078
挽巷
挽巷 2021-02-15 03:20

When I advance the slider manually, the slider jumps to the top of the page. How can I prevent this from happening? Help much appreciated! Here\'s the code:

<         


        
12条回答
  •  甜味超标
    2021-02-15 03:34

    Set href to href="javascript:void(0)" then add this somewhere in your js:

    $('.carousel-control.right').click(function(){ $('.carousel').carousel('next')});
    $('.carousel-control.left').click(function(){ $('.carousel').carousel('prev')});
    

提交回复
热议问题