2010-07-03 66 views
0

我剛剛發現這個簡單的jQuery標籤菜單:如何直接鏈接到標籤式菜單

http://jqueryfordesigners.com/demo/tabs.html

我如何才能增加它的絕對通用的鏈接選項卡每個內容?我解釋: 例如,如果用戶輸入http://xxxx.com/mypage.php#Second,則標籤內容的第二個應該變爲標籤(打開)。有沒有簡單的方法將此功能添加到此菜單?

+0

你要找的是什麼回答這裏:http://stackoverflow.com/questions/2419302/jquery-how-to-show-specific-tab-with-link-from-another-page – 2010-07-03 01:26:00

回答

1

此鏈接(注意小寫字母 「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(); 
+0

感謝您的幫助guys.regards。 – tetris 2010-07-03 02:08:49

+0

@tada - 這是否解決了您的問題?如果是這樣,請點擊此答案旁邊的複選標記。 :O) – user113716 2010-08-24 18:18:18