$(".wojo.tab.content").hide();
$(".wojo.tabs a:first").addClass("active").show();
$(".wojo.tab.content:first").show();
$(".wojo.tabs a").on('click', function () {
$(".wojo.tabs a").removeClass("active");
$(this).addClass("active");
$(".wojo.tab.content").hide();
var activeTab = $(this).data("tab");
$(activeTab).show();
我正在尝试将href链接指向特定选项卡。我有两个。让我们说1是“uprofile”而另一个是“umember”。所以我希望能够:www.mysite.com/page/dashboard#profile或www.mysite.com/page/dashboard#umember
提前谢谢
答案 0 :(得分:0)
所以你想根据哈希改变标签?
var hash = window.location.hash;
if (hash.length>1) {
var elem = $(hash);
//do what you want to show it
}