我刚刚找到了这个简单的jQuery标签菜单:
http://jqueryfordesigners.com/demo/tabs.html
如何添加绝对链接到标签的每个内容?我解释: 例如,如果用户输入http://xxxx.com/mypage.php#Second,则第二个选项卡内容应变为选项卡(打开)。有没有一种简单的方法可以将此功能添加到此菜单中?
答案 0 :(得分:1)
对于此链接(注意“second”中的小写“s”以匹配您的示例):
http://xxxx.com/mypage.php#second
试试这个:
// get the hash from the location
var tab = window.location.hash;
// get the <a> element with the href that matches the location hash,
// and fire a click event on it
$('div.tabs ul.tabNavigation a[href=' + tab + ']').click();