链接到其他页面的特定选项卡

时间:2012-05-09 09:51:58

标签: jquery css tabs url-routing hashcode

一些帮助将不胜感激 - 我正在尝试显示一个特定的标签,其中包含来自其他页面的链接。示例显示[here]目标页面包含大部分代码 - 请记住选项卡工作正常,因为它们只需要能够定位选项卡中的特定内容

1 个答案:

答案 0 :(得分:1)

这应该有效:

// remove current selection 
$(".tablist ul.tabs li").removeClass("current");

// check if the desired tab exists 
if ( $("#" + (window.location.hash.replace("#", ""))) ) {

    // selected desired tab
    $("#" + (window.location.hash.replace("#", ""))).addClass("current");

} else {

    // select first tab
    $('ul.tabs li:first').addClass('current');
}