Bootstrap Carousel Jumps to top of page when advancing

前端 未结 12 2074
挽巷
挽巷 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:31

    you should try with jquery:

    $('.carousel-control').click(function (e) {
      e.preventDefault();
    });
    

提交回复
热议问题