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