在给定的例子中,我使用" .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');
}
});
答案 0 :(得分:1)
在这里!
8443