我有一个标准的标签部分,用于将内容划分为单独的标签,类似于jQuery标签。 我的问题是,如何通过url(www.domain.com/content#tab2)打开特定选项卡。在这种情况下,通过将标签事物添加到URL
,它不起作用 $(document).ready(function() {
//Default Action
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
});
<ul class="tabs">
<li><a href="#welcome">welcome</a></li>
<li><a href="#one">tab 01</a></li>
<li><a href="#two">tab 02</a></li>
</ul>
<section class="tab_container">
<article id="welcome" class="tab_content"><p>content</p></article>
<article id="one" class="tab_content"><p>content</p></article>
<article id="two" class="tab_content"><p>content</p></article>
</section>
答案 0 :(得分:4)
将此信息放入$(document).ready
函数
hash = window.location.hash;
elements = $('a[href="' + hash + '"]');
if (elements.length === 0) {
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
} else {
elements.click();
}
答案 1 :(得分:0)
您可以使用jQueryTab的“selected”选项设置当前选项卡,您必须捕获URL选项并在页面加载事件上设置选项卡。
$("#SimpleTab").tabs("option", "selected", 2);
请参阅我的博客中的示例:http://csharp-guide.blogspot.in/2012/07/aspnet-jquery-ui-tab-set-active-tab.html
答案 2 :(得分:0)
这就是我现在准备的文件
hash = window.location.hash;
elements = $('a[href="' + hash + '"]');
if (elements.length === 0) {
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
} else {
elements.click();
}
if($('.tab2').length>0){
$(".tab_content").hide(); //Hide all content
$("ul.tabNav li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
var z = 100;
$('ul.tabNav li a').each(function() {
z--;
$(this).css('z-index', z);
});
$("ul.tabNav li").click(function() {
$("ul.tabNav li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
}