admin管理员组文章数量:1352177
<div class="tabs">
<ul id="tab" class="nav nav-tabs">
<li class="active">
<a href="#feed" data-toggle="tab">Feed</a>
</li>
<li>
<a href="#dashboard" data-toggle="tab">Dashboard</a>
</li>
</ul>
</div>
When a user clicks the link below. i want to change the #dashboard li to active, and remove active from the #feed li. how do i do this?
<a href=".showfollowers" onclick='load_followers();' data-toggle="tab">See All</a>
<div class="tabs">
<ul id="tab" class="nav nav-tabs">
<li class="active">
<a href="#feed" data-toggle="tab">Feed</a>
</li>
<li>
<a href="#dashboard" data-toggle="tab">Dashboard</a>
</li>
</ul>
</div>
When a user clicks the link below. i want to change the #dashboard li to active, and remove active from the #feed li. how do i do this?
<a href=".showfollowers" onclick='load_followers();' data-toggle="tab">See All</a>
Share
Improve this question
edited Apr 22, 2012 at 1:55
Joseph
120k30 gold badges184 silver badges237 bronze badges
asked Apr 22, 2012 at 1:53
arbolesarboles
1,3314 gold badges22 silver badges39 bronze badges
7 Answers
Reset to default 4You better use unobtrusive javascript:
<a href=".showfollowers" id="foo" data-toggle="tab">See All</a>
Code:
$('#foo').click(function(){
$('#dashboard').addClass('active');
$('#feed').removeClass('active');
load_followers();
return false; // if needed.
});
Though it can be done with inline scripts, inline code is deprecated.
<div class="tabs">
<ul id="tab" class="nav nav-tabs">
<li class="active"><a href="#feed" data-toggle="tab">Feed</a></li>
<li><a href="dashboard" data-toggle="tab">Dashboard</a></li>
</ul>
</div>
<a href="showfollowers" onclick='load_followers();' data-toggle="tab">See All</a>
$('.showfollowers').click(function(){
$(#tab li).removeClass('active');
$('#dashboard').parent().addClass('active');
})
One way to do that is:
$("#tab li").removeClass("active");
$("#dashboard").parent().addClass("active");
This will firstly remove class "active" for all of 'li' elements then add it to the li element of #dashboard tab.
The other way is to use siblings() function.
var dashboard = $("#dashboard").parent(),
siblings = dashboard.siblings();
siblings.removeClass("active");
dashboard.addClass("active")
may this helps you... find more about toggle class http://api.jquery./toggleClass/
$("[href='showfollowers']").click(function(event){
event.preventDefault();
$("#tab li").toggleClass("active");
});
I would add id
to the element so that it will nbe easy to identify elements.
<div class="tabs">
<ul id="tab" class="nav nav-tabs">
<li id="liFeed" class="active"><a href="#feed" data-toggle="tab">Feed</a></li>
<li id="lidashboard""><a href="#dashboard" data-toggle="tab">Dashboard</a></li>
</ul>
</div>
<a href="#" data-toggle="tab" id="aSeeAll" >See All</a>
Script
$(function(){
$("#aSeeAll").click(function(e){
e.preventDefault();
$("#tab li").removeClass("active");
$("#lidashboard").addClass("active");
});
});
Working sample : http://jsfiddle/H2BBn/2/
$("div.tabs li").eq(1).addClass("active").siblings().removeClass("active");
I found that the solutions above worked only partially for me. The tab changed to active but the new content didn't show. Here's what I ended up with:
$('.ext-butt-class').click(function(e){
e.preventDefault();
$(".nav-tabs li").removeClass("active");
$("[href='#requiredtab']").parent().addClass("active");
});
.where .ext-butt-class
is added to the link that's triggering the switch and #requiredtab
is the a-name of the tab we're trying to target.
Hope that helps someone else using Roots Wordpress Framework and/or Twitter Bootstrap.
本文标签: javascriptusing jquery to make class activeStack Overflow
版权声明:本文标题:javascript - using jquery to make class active - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743899095a2558338.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论