Bootstrap Tabs: Next & Previous Buttons for Forms

后端 未结 3 1088
半阙折子戏
半阙折子戏 2020-12-08 02:10

I am trying to (eventually) split a form over several Bootstrap 3.x tabs, but I am having trouble with the previous and next buttons. Only the first next button functions an

3条回答
  •  太阳男子
    2020-12-08 03:15

    For bootstrap 4

    
    
    
    
    $('.next').click(function () {
        $('.nav-tabs > .nav-item > .active').parent().next('li').find('a').trigger('click');
    });
    
    $('.previous').click(function () {
        $('.nav-tabs > .nav-item > .active').parent().prev('li').find('a').trigger('click');
    });
    

提交回复
热议问题