只需将类显示为活动选项卡,不显示休息选项卡的类

时间:2016-05-06 06:02:57

标签: jquery

在给定的例子中,我使用" .active"和" .inactive"课程,但我只想展示" .active"单击选项卡的类而不需要应用" .inactive",如何删除" .inactive"来自代码的条件

//------ Tabs
                $('#tabs li:first-child a').addClass('active');
        $('#tabs li a:not(:first)').addClass('inactive');
                $('.tab-container').hide();
                $('.tab-container:first').show();

                $('#tabs li a').click(function(){
                    var t = $(this).attr('id');

                    if(!$(this).hasClass('active')){ //this is the start of our condition 

          $('#tabs li a').removeClass('active').addClass('inactive');           
                    $(this).removeClass('inactive').addClass('active');

                    $('.tab-container').hide();
                    $('#'+ t + 'C').fadeIn('slow');
                 }
                });

JSFiddle Here

1 个答案:

答案 0 :(得分:1)

在这里!

8443