Using radio buttons for tab control using bootstrap

前端 未结 3 511
予麋鹿
予麋鹿 2020-12-25 13:45

I am trying to control tabs with radio buttons to change a content area for a scheduling screen. This works fine other than the radio buttons do not check.

Anyone g

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-25 14:22

    Bootstrap 4.3.1 working tabs as radio buttons

    $(document).ready(function () {
      $('input[name="intervaltype"]').click(function () {
          $(this).tab('show');
          $(this).removeClass('active');
      });
    })
     
     
     
     
    
    
    
    
    Daily
    Weekly
    Montly

提交回复
热议问题